Loops
Looping.
While
#[main]
fn main() {
let count = 100;
while (count > 0) {
count -= 1;
}
}Loop
#[main]
fn main() {
let count = 100;
loop {
count -= 1;
if (count <= 0) break;
}
}For
Tagging
Last updated