Difference between revisions of "Control flow: Continue loop"

(Created page with "<pre style="background-color: #ACC8E5; color: #112A46; border-radius: 10px; padding: 10px;"> This action will skip any subsequent actions within the loop and revert back to th...")
 
m
 
(One intermediate revision by the same user not shown)
Line 1: Line 1:
 
<pre style="background-color: #ACC8E5; color: #112A46; border-radius: 10px; padding: 10px;">
 
<pre style="background-color: #ACC8E5; color: #112A46; border-radius: 10px; padding: 10px;">
This action will skip any subsequent actions within the loop and revert back to the start of the loop.
+
This action will not execute the remaining actions in the current cycle of the loop and will instead return to the beginning of the same loop to start a new iteration.
If this action is placed outside of a loop then it will be ignored.
+
</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 will not execute the remaining actions in the current cycle of the loop and will instead return to the beginning of the same loop to start a new iteration.
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.