English
Appearance
while
Repeats a block as long as the condition is true.
while <condition> { <statements> }
fn main() { let i = 0; while i < 5 { i += 1; } print(i); // 5 return 0; }
for
Not yet implemented.