class Main { public static Void main () { i := 0 while (true) { i += 1 echo (i) if (i % 6 == 0) break // end loop on condition } } }