Files
compiler-old/examples/simple.src
T

7 lines
100 B
Plaintext

fn main() -> i8 {
if 2 * 5 == 10 {
return -1;
} else {
return 45;
}
}