For, While, and Until Loops

Ruby provides several looping constructs:

For Loop:

for i in 1..5
  puts i
end

While Loop:

i = 0
while i < 5
  puts i
  i += 1
end

Until Loop:

i = 0
until i == 5
  puts i
  i += 1
end
← PrevNext →