RosettaCodeData/Task/Loops-While/Crystal/loops-while-2.cr
2024-10-16 18:07:41 -07:00

5 lines
47 B
Crystal

i = 1024
until i <= 0
puts i
i //= 2
end