BREAK (Loops)
Exits from a WHILE loop. Syntax BREAK Comments Upon encountering a BREAK command, the software continues execution at the first command following the ENDWHILE of the “innermost WHILE loop” containing the BREAK. Any IF or CASE statements that are still open when a BREAK command is executed are automatically closed. Example Consider the following code…
Read more