// expect: 3 // expect: 8 fn main() { let a = 0; while a < 3 { a = a + 1; } print(a); while a < 10 { if a >= 8 { break; } a = a + 1; } print(a); }