Files
compiler-old/tests/if-else.src
T

7 lines
103 B
Plaintext

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