break: Difference between revisions
Jump to navigation
Jump to search
Lou Montana (talk | contribs) (Add more iterations) |
(Added simple while example) |
||
Line 40: | Line 40: | ||
}; | }; | ||
</sqf> | </sqf> | ||
|x3 = <sqf>0 spawn | |||
{ | |||
private _n = 0; | |||
while {_n < 10} do | |||
{ | |||
if (_n == 8) then | |||
{ | |||
break; | |||
}; | |||
systemChat str _n; //8 will never be printed | |||
_n = _n + 1; | |||
}; | |||
};</sqf> | |||
|seealso= [[continueWith]] [[continue]] [[breakWith]] [[breakOut]] | |seealso= [[continueWith]] [[continue]] [[breakWith]] [[breakOut]] | ||
}} | }} |
Revision as of 19:35, 23 May 2024
Description
- Description:
- Skips all loop iterations (for, forEach, while, findIf etc).
- Groups:
- Program Flow
Syntax
Examples
- Example 1:
- Example 2:
- Example 3:
Additional Information
- See also:
- continueWith continue breakWith breakOut
Notes
-
Report bugs on the Feedback Tracker and/or discuss them on the Arma Discord or on the Forums.
Only post proven facts here! Add Note