Example of a Until Loop
counter = 0 until counter == 20 puts "The current number is less than 20." counter += 1 end