Difference between revisions of "Break"
From Wiki
(→Description: usefull for more than just while loops. also, please dont link to the current page, use bold for emphasis.) |
(→See Also: referenced additional control structures) |
||
| Line 27: | Line 27: | ||
=== See Also === | === See Also === | ||
{| | {| | ||
| − | | width=200px | [[while]] | + | | width=200px | [[while]] || width=200px | [[for]] || width=200px | [[repeat..until]] |
|} | |} | ||
---- | ---- | ||
Revision as of 15:20, 24 August 2005
Break
Flow Control
Synopsis
Break
Description
break can be used to immediately exit any loop structure.
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 | for | repeat..until |
| Main_Page | Documentation | Flow Control |