break — Break out of a loopProgram & flow

Exit the innermost loop early.

break

Only meaningful inside `repeat`. A loop containing `break` runs on the interpreter (it can't be statically unrolled).

See also: repeat · continue

← all commands