RosettaCodeData/Task/Loops-While/Crystal/loops-while-2.crystal

6 lines
47 B
Text
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
i = 1024
until i <= 0
puts i
i //= 2
end