let mut x = 0; loop { x += 1; println!("{}", x); if x % 6 == 0 { break; } }