The Freya Programming Language

Repeat statements

See also

The repeat statement execute a list of statements one or more times, according to the evaluation of its boolean condition.

Syntax

The repeat statement syntax allows to include a list of semicolon separated statements without grouping them inside a block:

repeat
    statement-list
until condition

This time, the boolean condition is evaluated after executing the statement list.

See also

The Freya Programming Language
Statements
loop statements
while statements
for statements