Continue statement
The continue statement has the form
continue
If used within a for-loop, a while-loop, a repeat-loop, or a with statement, it continues with the next value for the loop or with statement.
Contributor: Mark Overmars
The continue statement has the form
If used within a for-loop, a while-loop, a repeat-loop, or a with statement, it continues with the next value for the loop or with statement.
Related: a program, addressing variables in other instances, arrays, assignments, break statement, comment, continue statement, do statement, exit statement, expressions, extra variables, for statement, functions, functions and variables in gml, if statement, repeat statement, scripts, switch statement, variables, while statement, with construction
Contributor: Mark Overmars
REFERENCE
