break: Difference between revisions
Jump to navigation
Jump to search
Lou Montana (talk | contribs) m (Text replacement - "<sqf>([^↵][^>]*↵[^>]*)<\/sqf>" to "<sqf> $1 </sqf>") |
Lou Montana (talk | contribs) m (Some wiki formatting) |
||
Line 44: | Line 44: | ||
0 spawn | 0 spawn | ||
{ | { | ||
private _value = 0; | |||
while { _value < 10 } do | |||
{ | |||
if (_value == 8) then | |||
{ | |||
break; // 8 and 9 will never be printed | |||
}; | |||
systemChat str _value ; | |||
_value = _value + 1; | |||
}; | |||
}; | }; | ||
</sqf> | </sqf> |
Latest revision as of 12:55, 6 November 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