fn main() { let mut i = 0; while true { println!("#i: {}", i); i += 1; if i > 99 { break; } } }