RosettaCodeData/Task/Loops-While/MOO/loops-while.moo

6 lines
61 B
Text
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
i = 1024;
while (i > 0)
player:tell(i);
i /= 2;
endwhile