RosettaCodeData/Task/Loops-Downward-for/Ruby/loops-downward-for.rb
2023-07-01 13:44:08 -04:00

3 lines
34 B
Ruby

10.downto(0) do |i|
puts i
end