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

7 lines
114 B
Rust
Raw Normal View History

2017-12-22 15:26:26 +00:00
fn main() {
2017-12-22 15:33:02 +00:00
for number in (1..4).rev() {
println!("{}!", number);
2017-12-22 15:28:49 +00:00
}
2017-12-22 15:33:02 +00:00
println!("LIFTOFF!!!");
2017-12-22 15:26:26 +00:00
}