Difference between revisions of "CONTINUE"
Jump to navigation
Jump to search
Navigation:
imported>SMcNeill (Created page with '{{DISPLAYTITLE:_CONTINUE}} The _CONTINUE statement is used in a DO/LOOP, WHILE/WEND, FOR/LOOP block to skip the remaining lines of code in a block (without exiting it) and start…') |
imported>Odin m |
||
(3 intermediate revisions by one other user not shown) | |||
Line 1: | Line 1: | ||
{{DISPLAYTITLE:_CONTINUE}} | {{DISPLAYTITLE:_CONTINUE}} | ||
− | The _CONTINUE statement is used in a DO | + | The [[_CONTINUE]] statement is used in a [[DO...LOOP]], [[WHILE...WEND]] or [[FOR...NEXT]] block to skip the remaining lines of code in a block (without exiting it) and start the next iteration. It works as a shortcut to a [[GOTO]], but without the need for a [[line numbers|line label]]. |
{{PageSyntax}} | {{PageSyntax}} | ||
− | : _CONTINUE | + | : [[_CONTINUE]] |
− | + | ==Availability== | |
− | + | * Build 20170628/55 up. | |
− | * | ||
+ | {{PageExamples}} | ||
''Example:'' | ''Example:'' | ||
{{CodeStart}} | {{CodeStart}} |
Latest revision as of 03:15, 19 May 2018
The _CONTINUE statement is used in a DO...LOOP, WHILE...WEND or FOR...NEXT block to skip the remaining lines of code in a block (without exiting it) and start the next iteration. It works as a shortcut to a GOTO, but without the need for a line label.
Contents
Syntax
Availability
- Build 20170628/55 up.
Examples
Example:
FOR i = 1 TO 10 IF i = 5 THEN _CONTINUE PRINT i; NEXT
1 2 3 4 6 7 8 9 10
See also