RepeatUntil

Typecontrol structure
DictionaryLCB
LibraryLiveCode Builder
Syntax
repeat until <Condition>
	<StatementList>
end repeat
Associationscom.livecode.language
Summary

Executes a list of statements until a condition becomes true.

Parameters
NameTypeDescription
Condition

An expression which evaluates to a boolean.

StatementList

A set of statements.

Description

Use the repeat until Condition structure to execute a set of statements repeatedly, until the Condition evaluates to true.