let main = () => i64 { let counter = 0; while counter < 10 { print(counter); counter = counter + 1; }; while counter % 3 == 0 { print(0); }; return counter; };