BREAK
Root / Documentation / [.]

Break out of a loop.
* Syntax
```sbsyntax
BREAK
```
The `BREAK` keyword causes the loop it is within to exit immediately. It can *only* occur inside of loops; using it outside of one is a syntax error.
* Examples
```sb4
LOOP
IF !RND(10) THEN BREAK
ENDLOOP
```
No posts yet (will you be the first?)