feat: add tests

This commit is contained in:
2024-01-07 18:26:09 +08:00
parent 526dd4172b
commit 7ec4c4a526
15 changed files with 248 additions and 0 deletions

View File

@@ -0,0 +1,8 @@
fn is_odd(num: i32) -> bool {
num % 2 == 1
}
fn main() {
println!("{} is odd: {}", 9, is_odd(9));
}