basic/doc/statements/
while.rs

1/*!
2# `WHILE <expression> : WEND`
3
4## Purpose
5Loop until the expression evaluates false.
6
7## Remarks
8`WHILE` and `WEND` are matched up in the link phase according to their position
9in the source. This is different from `FOR` loops which use the stack.
10
11## Example
12```text
1310 READ A$
1420 WHILE A$ <> "END"
1530 PRINT A$;
1640 READ A$
1750 WEND
1860 DATA "S","T","A","S","I","S","END"
19RUN
20STASIS
21```
22
23*/