Skip to content
AutomationDirect edited this page Jan 3, 2020 · 2 revisions

break


Description

Break out of a block that loops repeatedly.


Usage

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.

Clone this wiki locally