suicmez/tests/control_flow.sui

12 lines
152 B
Text
Raw Normal View History

2025-12-15 13:53:57 +05:30
# Control flow test
fn main() -> int do
if true
1
else
0
2025-12-15 21:42:52 +05:30
let mut i = 0;
2025-12-15 13:53:57 +05:30
while i < 5
i = i + 1;
i
end