Member of the programming class.
while
Performs a while loop. The principle calling structure of a while loop is:while expressionstatement1........statementnend
Examples
A = 1X = 1while X<10,A = A+1,X = X+1,end
breakcontinueforreturn