RosettaCodeData/Task/Loops-While/Crystal/loops-while-1.crystal
2023-07-01 13:44:08 -04:00

5 lines
48 B
Text

i = 1024
while i > 0
puts i
i //= 2
end