Break

The statement Break ends a For … Do … Od, ForEach … Do … Od or While … Do … Od loop. This statement is only allowed in repeating controls. Break is a command in itself and must be followed by a semicolon (;).

Example

Parameter Text Path;
Var Number Count;

For Count = 1 To length(Path) Do
  If substring (Path, Count, 1) = "\" Then
    Break;
  Fi;
Od;

This code searches for the first slash in the parameter and returns its position.