| Home | Previous Lesson: DO WHILE...LOOP Next Lesson: DO� LOOP WHILE |
This statement works exactly opposite to the DO WHILE...LOOP statement. The command block is executed as long as the expression specified on the first line (specified on the DO UNTIL line) is NOT true. The syntax is:
DO WHILE expression
statement block
LOOP
| Home | Previous Lesson: DO WHILE...LOOP Next Lesson: DO� LOOP WHILE |