![]() ![]() |
|
CONTINUEThe CONTINUE statement is the complimentary statement to the BREAK statement without arguments.
COMMAND SYNTAXCONTINUE The statement is used within a loop to skip the remaining code in the current iteration and proceed directly on to the next iteration.
NOTESThe compiler will issue a warning message and ignore the statement if it is found outside an iterative loop such as FOR...NEXT, LOOP...REPEAT.
EXAMPLE
The above example will execute the loop 30 times but will only call the subroutine ProcessText when the current array element of Pattern is not a numeric value or null. |