4.4.5 Break
The [Break] command allows you to break the loop.
Set break mode
- Break: Terminate the current loop iteration immediately, and the program runs the next program node of the
Loop
node. - Continue: Skip the remaining code within the current loop iteration and proceed to the next iteration. If the
Loop
node does not require variable or expression determination, the next loop will be entered immediately. If theLoop
node requires variable or expression determination, the determination will be made first. If it is true, the next loop will be entered; if it is false, the loop will be ended.