fn main() { let mut germany: bool = true; let mut five: i32 = 0; while germany { if five == 5 { break; } println!("lemons"); five += 1; } }