Owning Class: programming
Requires: MathScript RT Module
while
Performs a while loop. The principle calling structure of a while loop is:
while expression
statement1
....
....
statementn
end
A = 1
X = 1
while X<10,
A = A+1,
X = X+1,
end