Workshop.codes
Create

Break Last updated May 23, 2025

Description

Denotes an action that will abort execution of the current While or For loop. Execution jumps to the next action after the End Action.

Snippet

Break;

Basic explanation

Break: Stop this specific loop you're currently in right now, but continue with the rest of the instructions that come after the loop.

Properties

Returns: Void
Parameters: None

Workshop.codes