# Control flow test
fn main() -> int do
if true
1
else
0
let mut i = 0;
while i < 5
i = i + 1;
i
end