NOP Design Home Page
Documentation
TOC/Index
Search
Downloads



While

Loop structure

Sample Source

i := 0
While i < 10
   Say "\n i = " + i
   i := i + 1
Loop

Sample Source

bOne := True
bTwo := True

While (bOne & bTwo)
  bOne := False
  bTwo := False
Loop

Related Function(s):
   For; Repeat ... Until;

Minimum version: 1.0