Break
Break()
exits a
For
,While
, orDo
loop.
Examples
>> n = 0>> While(True, If(n>10, Break()); n=n+1)>> n11
Related terms
Implementation status
- ✅ - full supported
Break()
exits a
For
,While
, orDo
loop.
>> n = 0>> While(True, If(n>10, Break()); n=n+1)>> n11