fn main() { { let mut i:isize = 10; while i >= 1 { println!("{}", i); i += -1; } } println!("Blastoff!"); }