The manual states
What if this happens:Quote:
5.85. WHILE..WEND
WHILE Condition
Statement...
WEND
Repeatedly execute Statements WHILE Condition is true. When the
Condition is no longer true, execution continues at the statement
following the WEND. Condition may be any comparison expression.
i = 1
WHILE i <= 10
Serout 0,N2400,[”No:”,#i,13,10]
i = i + 1
WEND
If x = number will the outer WHILE loop notice?Code:WHILE x < number
WHILE a = b
x = x + 1
WEND
WEND