fn main() { println!("Powers of 2 up to 256!"); { let mut i:isize = 1; while i <= 256 { println!("{}", i); i *= 2; } } }