mirror of
https://github.com/KaiserY/trpl-zh-cn
synced 2025-04-07 04:18:04 +08:00
12 lines
153 B
Rust
Executable File
12 lines
153 B
Rust
Executable File
fn main() {
|
|
let mut number = 3;
|
|
|
|
while number != 0 {
|
|
println!("{}!", number);
|
|
|
|
number -= 1;
|
|
}
|
|
|
|
println!("LIFTOFF!!!");
|
|
}
|