until statement

The until statement can be used to repeatedly run a piece of code as long as a condition is not satisfied.
      until expression
          statement group
      end
It is the opposite of while statement. The statement group is executed until the logical value of expression becomes true.

Note that untill and until are equivalent.



oz 2009-12-22