-- Chapter 18 example: repeat...until runs the body at least once. local count = 1 repeat print(count) count = count + 1 until count > 5