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