| Break |
Stops execution of a control block. |
| Case |
Allows conditional execution of code based on one or more Boolean expressions. |
| For |
Executes a block of code in an iteration. |
| For_All |
Implements a constraint-oriented file-scanning and processing structure. |
| If |
Conditionally controls the execution of one or more statements of code. |
| Loop |
Terminates a repeating block of code initiated with For, Repeat, or While. |
| Repeat |
Executes a repeating block of code. |
| Until |
Establishes a conditional terminator for repeating blocks of code initiated with Repeat or While. |
| While |
Marks a block of code to be executed repeatedly depending on a condition. |