| |
|
 |
|
| |
|
Break |
Language
reference |
|
| Syntax
Break |
|
| Description:
LC Basic have two types of loops.
For, Next
While, EndWhile
Command Break terminates the current loop
begins While or For and continues after EndWhile or Next.
|
|
| Examples:
For n=1 to 100
If n=5 : Break : Endif
Next
Proccessing of loop is breaked if n=5. |
|
| See also:
Continue, For,
Next, While, EndWhile |
|
| A statement break is a part of
kernel LC Basic. |
|
|