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