Locked lesson.
About this lesson
Looping until a condition is met using until loops.
Exercise files
Download this lesson’s related exercise files.
Until Loops.docx59 KB Until Loops - Solution.docx
59.1 KB
Quick reference
Until Loops
Until loops are another loop for your toolbelt.
When to use
There may be specific times when you need an until loop, but it's more just a personal preference.
Instructions
An until loop is similar to a while loop, just from a different angle.
num = 0
until num == 10 do
puts num += 1
end
Hints & tips
- Until loops are similar to while loops
- Until loops execute until your condition is true
Lesson notes are only available for subscribers.