Repeat Loops

Repeat loops have different syntax from while loops, but they work similarly. The only real difference is that repeat loops are guarunteed to run at least once. The syntax is quite simple, and you can see an example to the right.

repeat
--code here
until condition