7 lines
98 B
Plaintext
7 lines
98 B
Plaintext
fn main() -> i32 {
|
|
let a = 4f32;
|
|
if (a % 2) == 0 {
|
|
return 1;
|
|
}
|
|
return 0;
|
|
} |