The Continue keyword causes program flow to jump immediately to the start of the next iteration of an enclosing For, While or Repeat loop.
Continue
Continue can be used to jump directly to the next iteration of a loop without executing any further code within the loop.
For | While | Repeat
Language reference
In this example, the remainder of the code within the loop (the Print statement in this case) is ignored if the value of loop is greater than 3.
On reaching the Continue statement, program flow effectively skips the remainder of the code within the loop and moves on to the next iteration.
For
Local
loop
:
Int
=
1
To
10
If
loop
>
3
Then
Continue
Print
loop
Next