//# run script { fun main() { let x = 0; while (true) { if (x >= 5) break; x = x + 1; }; assert!(x == 5, 42); } }