Go to the first, previous, next, last section, table of contents.

WHILE Statement

WHILE <expr> DO <stmts> END

<expr> must be a boolean-valued expression. <stmts> are executed until <expr> becomes FALSE. If <expr> is FALSE at the start <stmts> are not executed at all.


Go to the first, previous, next, last section, table of contents.