Difference between revisions of "Control flow: Break from loop"

m
m
 
Line 2: Line 2:
 
This action immediately interrupts the loop in which it is currently running.  
 
This action immediately interrupts the loop in which it is currently running.  
 
The macro continues with the first action immediately after the loop.
 
The macro continues with the first action immediately after the loop.
 +
</pre>
 +
<pre style="background-color: #FFFF99; color: #112A46; border-radius: 10px; padding: 10px;">
 +
It is important to note that if this action is placed outside the context of a loop, it will have no effect and will be completely ignored.
 
</pre>
 
</pre>

Latest revision as of 01:54, 13 February 2024

This action immediately interrupts the loop in which it is currently running. 
The macro continues with the first action immediately after the loop.
It is important to note that if this action is placed outside the context of a loop, it will have no effect and will be completely ignored.