Until flag true

Command group Flag affected Reversible Execute on client Platform(s)
Constructs NO NO YES All

Syntax

Until flag true

Description

This command terminates the Repeat–Until conditional loop if the flag is true; execution continues with the command following the Until command. If the flag is false, execution continues with the command following the Repeat command.

Example

# loop until 'Yes' is pressed
Repeat
  Yes/No message {Press Yes to exit loop}
Until flag true