While...Wend |
Previous Next |
While <Expression>
<Code>
Wend
|
Part
|
Description
|
<Expression>
|
Required. The expression that is to be checked to determine the
condition of the loop.
|
While a < 10
Locate 1,1: Print a
a++
Wend
|