jhyatt1017
12/23/2017 - 3:03 AM

Until Loop

Example of a Until Loop

counter = 0

until counter == 20
  puts "The current number is less than 20."
  counter += 1
end