-
Notifications
You must be signed in to change notification settings - Fork 4
break
AutomationDirect edited this page Jan 3, 2020
·
2 revisions
Break out of a block that loops repeatedly.
Placing a 'break' block inside a 'while', 'Do While', 'Repeats' and other repeating blocks will cause the program to exit the current repeating block. When the program encounters a 'break' block inside a repeating block, the repeating block will exit immediately and the program will continue past the repeating block.