While...Wend

From NSB App Studio
Revision as of 21:16, 8 July 2012 by Brendon (talk | contribs) (Created page with "WHILE condition <br /> :::[statements] <br /> WEND '''Description''' WHILE...WEND repeats a group of statements while a given condition is TRUE. The required component, cond...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

WHILE condition

[statements]

WEND

Description

WHILE...WEND repeats a group of statements while a given condition is TRUE. The required component, condition, is any valid expression that evaluates to TRUE or FALSE. The optional component, statements, are executed during each iteration of the loop. WHILE...WEND statements can be nested, and any WEND statements in a nested loop transfer execution to one level above the loop where the WEND occurs.