CONTINUE
Root / Documentation / [.]
Created:
Skip to the next iteration of a loop.
* Syntax
```sbsyntax
CONTINUE
```
The `CONTINUE` keyword skips the current iteration of the loop it is within. It cannot be used outside of loops, a `Syntax error` will occur.
* Examples
```sb4
'don't print 13!
FOR I=1 TO 100
IF I==13 THEN CONTINUE
PRINT I
NEXT
```
* See Also
- sbs:page/docs-sb4-for[`FOR` loop]
- sbs:page/docs-sb4-while[`WHILE` loop]
- sbs:page/docs-sb4-repeat[`REPEAT` loop]
- sbs:page/docs-sb4-loop[`LOOP` loop]
No posts yet (will you be the first?)