What is the function and syntax of WHILE ….. WEND statement?
- To execute a function of statements in a loop as long as a given condition is true.
Syntax:
WHILE (condition)
statements
WEND
Example:
REM a program to print series from 1 to 10 - CLS
c = 1
WHILE c <= 10
PRINT c
c = c + 1
WEND
END