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