Compare commits

..

2 Commits

Author SHA1 Message Date
SimonFJ20
8c00000ea4 add to tk_rap 2024-12-18 10:42:18 +01:00
d12d3b9923 usecase dos 2024-12-18 10:41:43 +01:00
3 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")
}
}

Binary file not shown.

BIN
usecase_dos.odt Normal file

Binary file not shown.