usecase dos

This commit is contained in:
Theis Pieter Hollebeek 2024-12-18 10:41:43 +01:00
parent f990e57c85
commit d12d3b9923
2 changed files with 22 additions and 0 deletions

View File

@ -0,0 +1,22 @@
fn print(msg: string) #[builtin(Print)] {}
fn println(msg: string) { print(msg + "\n") }
fn mul(left: int, right: int) -> int {
if left == 0 or right == 0 {
0
} else {
left * right
}
}
fn main() {
if mul(10,2) == 20 {
println("test 1 passed")
}
if mul(3,2) == 6 {
println("test 2 passed")
}
if mul(0,2) == 0 {
println("test 3 passed")
}
}

BIN
usecase_dos.odt Normal file

Binary file not shown.