mirror of
https://github.com/rust-lang/rust.git
synced 2025-01-18 02:34:37 +00:00
9 lines
146 B
Rust
9 lines
146 B
Rust
fn main () {
|
|
let mut line = "";
|
|
let mut i = 0;
|
|
while line != "exit" {
|
|
line = if i == 9 { "exit" } else { "notexit" };
|
|
i += 1;
|
|
}
|
|
}
|