5 lines
77 B
Rust
5 lines
77 B
Rust
fn main() {
|
|
for i in (0..=10).rev() {
|
|
println!("{}", i);
|
|
}
|
|
}
|