The repeat statement execute a list of statements one or more times, according to the evaluation of its boolean condition.
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.
The Freya Programming Language
Statements
loop statements
while statements
for statements