RosettaCodeData/Task/Loops-While/MOO/loops-while.moo
2023-07-01 13:44:08 -04:00

5 lines
61 B
Text

i = 1024;
while (i > 0)
player:tell(i);
i /= 2;
endwhile