let main = () => { let counter = 0; while !(counter == 10) { print(counter); counter = counter + 1; }; while counter == 0 { print(0); }; return counter; };