WHILE..WEND Keywords
Usage:
WHILE expression
statements
WEND
Description:
Use a WHILE loop to execute a block of statements as long as an expression is true.
Example:
sub main()
a = 1
while a <= 25
printl("This is test line ", a)
a = a + 1
wend
end sub