Programmer Guide/Command Reference/BREAK: Difference between revisions
From STX Wiki
Jump to navigationJump to search
m (1 revision: Initial import) |
(→BREAK) |
||
Line 4: | Line 4: | ||
<code>BREAK</code> | <code>BREAK</code> | ||
Stop loop processing immediately. Continue execution with the first command after the <code>[[Programmer Guide/Command Reference/END|END]]</code> statement. This command can only be used inside a <code>[[Programmer Guide/Command Reference/DO|DO]]</code>- | Stop loop processing immediately. Continue execution with the first command after the <code>[[Programmer Guide/Command Reference/END|END]]</code> statement. This command can only be used inside a loop (see <code>[[Programmer Guide/Command Reference/DO|DO]]</code>, <code>[[Programmer_Guide/Command_Reference/WHILE|WHILE]]</code>, <code>[[Programmer_Guide/Command_Reference/FOREVER|FOREVER]]</code>, and <code>[[Programmer_Guide/Command_Reference/FOR|FOR]]</code>). | ||
<!-- C.G. 14.3.2011 --> |