The manual states

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
What if this happens:

Code:
WHILE x < number
 WHILE a = b
  x = x + 1
 WEND
WEND
If x = number will the outer WHILE loop notice?