RosettaCodeData/Task/Loops-While/Rust/loops-while.rust

8 lines
108 B
Text
Raw Permalink Normal View History

2015-02-20 00:35:01 -05:00
fn main() {
2015-11-18 06:14:39 +00:00
let mut n: i32 = 1024;
2015-02-20 00:35:01 -05:00
while n > 0 {
println!("{}", n);
n /= 2;
}
}