7 lines
79 B
Plaintext
7 lines
79 B
Plaintext
unit bad_condition;
|
|
|
|
fn main() -> i32 {
|
|
if 1 { return 0; }
|
|
return 1;
|
|
}
|