|
* While
:
It repeats a statement or block of statements as long as a specified condition remains true.
|
* While..Break
:
Causes an exit from the innermost WHILE loop. Any statements that appear after the END keyword, marking the end of the loop, are executed.
|
* While..Continue
:
Causes the WHILE loop to restart, ignoring any statements after the CONTINUE keyword.
|