reid-llvm/examples/a3.reid

7 lines
98 B
Plaintext

fn main() -> i32 {
let a = 4f32;
if (a % 2) == 0 {
return 1;
}
return 0;
}