rust-exercises/loops/src/main.rs

12 lines
151 B
Rust
Raw Normal View History

2024-10-16 15:15:51 +00:00
fn main() {
2024-10-16 15:18:41 +00:00
let mut number = 3;
2024-10-16 15:18:41 +00:00
while number != 0 {
println!("{number}!");
2024-10-16 15:18:41 +00:00
number -= 1;
2024-10-16 15:18:24 +00:00
}
2024-10-16 15:18:41 +00:00
println!("LIFTOFF!!!");
2024-10-16 15:18:24 +00:00
}