Break
From Wiki
Revision as of 09:24, 18 August 2005 by 80.222.152.154 (Talk)
Break
Flow Control
Synopsis
Break
Description
break can be used to jump out from while loop
Example
set %Test 1
while %Test < 10
{
;Code between these brackets, gets executed, while %Test is smaller than 10
;When its 10, it wont jump back to first bracket.
if %Test = 7
break
set %Test %Test + 1
}
display ok %Test $
halt
%Test will hold the value of 7, notice how we break out from the loop when %Test is 7.
See Also
| while |
| Main_Page | Documentation | Flow Control |