This repository has been archived on 2026-03-09. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
bucky-old/example/simple.bky
2026-01-16 21:31:38 +01:00

15 lines
172 B
Plaintext

fn min(a: i32, b: i32): i32 {
if a < b {
return a;
}
return b;
}
fn max(a: i32, b: i32): i32 {
if a > b {
return a;
}
return b;
}