Previous: Repeat Statement To the Table of Content Next: With Statement

- 2.2.9.11 -
TMT Pascal Language Description
Pascal Language Structure
Statements

While Statement

The While statement executes one or more statements in a loop. while statements take the following form:
while expression do statement
where expression evaluates to a Boolean type. A while loop executes until expression evaluates to False. when False, control is transferred to the first statement outside the while loop.


Previous: Repeat Statement To the Table of Content Next: With Statement
Repeat Statement Table of Content With Statement

- 2.2.9.11 -