8 lines
90 B
Rust
8 lines
90 B
Rust
let mut x = 0;
|
|
|
|
loop {
|
|
x += 1;
|
|
println!("{}", x);
|
|
|
|
if x % 6 == 0 { break; }
|
|
}
|