Files
x/tests/test_math.rs
2024-07-12 07:59:48 -04:00

9 lines
99 B
Rust

use x::Libm;
#[test]
pub fn test_math() {
let a = 2f32.powi(4);
println!("Test: {a}");
}