b0e2d13 ^
5965c25 ^
1 2 3 4 5
6
7 8 9 10 11 12 13 14
let main = () => { let counter = 0; while !(counter == 10) { print(counter); counter = counter + 1; }; while counter == 0 { print(0); }; return counter; };