until (<condition>) <command_block>
Execute a command or block of commands while a condition has a false value.
<condition>
A conditional phrase yielding a boolean value.
<command_block>
One command or a block of commands to be continually executed until <condition> is true.
None
Any non-zero numeric or point, or any non-null string is considered true when evaluating <condition>.
A jump to the end of the until loop block may be made with the continue command.
A break out of the until loop block may be made with a break command.
Execute one command.
x = 1 until ( array[x] >= 10 ) x = x + 1
Execute a command block.
x = 0 until ( x >= 5 ) { x = x + 1 y = y * sqrt(x) }
Commands: |
|
Identifiers: |
cond_precision (numeric) |