96b0881a68
Issue #1257
9 lines
142 B
Rust
9 lines
142 B
Rust
fn main () {
|
|
let line = "";
|
|
let i = 0;
|
|
do {
|
|
line = if i == 9 { "exit" } else { "notexit" };
|
|
i += 1;
|
|
} while line != "exit";
|
|
}
|