NOP Design Home Page
Documentation
TOC/Index
Search
Downloads



Repeat ... Until

Repeat Until Looping Structure

Repeat code block Until statement is true.

Sample Source

i := 0

Repeat
  i := i + 1
  Say "\n i = " + i
Until (i = 10)

Say "\n"

Sample Source

strTest := ""

Repeat
   strTest := strTest + "."
Until (Length strTest) >= 20

Say strTest
Say "\n"

Related Function(s):
   For; While;

Minimum version: 4.8, build 20050908