RosettaCodeData/Task/Loops-While/Ruby/loops-while-3.rb

6 lines
49 B
Ruby

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