Looping with REPEAT..UNTIL loops | TaoYue.com
In a repeat loop, compound statements are built-in -- you don't need to use begin-end. Also, the loop continues until the Boolean expression is TRUE, whereas the while loop continues until the Boolean expression is FALSE. This loop is called a posttest lo...