The continue statement restarts a loop that is under for...next or loop...repeat control.
Syntax
continue |
Description
The program continues with the first executable statement after the for or loop statement.
NOTE |
If the continue is not embedded in a loop...repeat or for...next construct, it is ignored. |
Example(s)
loop input guess if guess=’restart’ then continue while guess > 1 and guess < 100 do repeat |
See Also