RosettaCodeData/Task/Loops-While/EMal/loops-while.emal

6 lines
53 B
Text
Raw Permalink Normal View History

2023-12-16 21:33:55 -08:00
int i = 1024
while i > 0
writeLine(i)
i /= 2
end