RosettaCodeData/Task/Loops-While/Ruby/loops-while-3.rb
2023-07-01 13:44:08 -04:00

5 lines
49 B
Ruby

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