This commit is contained in:
2024-07-12 07:59:48 -04:00
parent cc7063313f
commit 27d2c4707b
4 changed files with 170 additions and 2 deletions

9
tests/test_math.rs Normal file
View File

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