return
retry
redo
break
continue
Example:
i = 1 while true if i * 6 >= 30 retry end puts i * 6 i += 1 end