box-o-sand/rustbook/branches/src/main.rs

12 lines
161 B
Rust
Raw Normal View History

2017-12-22 15:26:26 +00:00
fn main() {
2017-12-22 15:28:49 +00:00
let mut number = 3;
2017-12-22 15:27:43 +00:00
2017-12-22 15:28:49 +00:00
while number != 0 {
println!("{}!", number);
number = number - 1;
}
println!("LIFTOFF!!!");
2017-12-22 15:26:26 +00:00
}