Command Repeat While (CONDITION_is_TRUE) COMMAND1

A logical command that allows you to execute a set of commands while a predefined condition is true.

       
       Fig. 1. Example of use of repeat while command.

The example above perform an iteration of i from 0 to n-1, if n is bigger then 5, the the command stop will be executed when i has value 5. In this case, when the variable i has the value 5, the message I found the value 5. Stop! will be printed and the loop repeat while is interrupted.