RepeatWhile

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

Executes a list of statements while a condition continues to be true.

Parameters
NameTypeDescription
Condition

An expression which evaluates to a boolean.

StatementList

A set of statements.

Description

Use the repeat while Condition structure to execute a set of statements repeatedly, while the Condition continues to evaluate to true.