Add lib.rs, scaffold testing

This commit is contained in:
Juno Takano 2025-12-14 19:00:57 -03:00
commit d9a6938eb6
11 changed files with 57 additions and 14 deletions

6
tests/smoke.rs Normal file
View file

@ -0,0 +1,6 @@
#[test]
fn add() {
let e = 0_i32;
let n = 0_i32;
assert_eq!(e, n);
}