REPEAT
Syntax
The statement list within a REPEAT
statement is repeated until the search_condition
expression is true. Thus, a REPEAT
always enters the loop at least once. statement_list
consists of one or more statements, each terminated by a semicolon (;
) statement delimiter.
A REPEAT
statement can be labeled. For the rules regarding label use, see , "Statement Label Syntax".
Example: