While

From Wiki
Revision as of 22:20, 27 April 2006 by Snicker7 (Talk | contribs) (changed version info)

Jump to: navigation, search

Synopsis

while ( expression ) { }

Description

While loops test the expression and if true, continuously executes the code provided until the expression is no longer true. Unlike repeat..until, while loops will not execute at all if the expression evaluates to false.

Example

set %Test 1

while %Test < 10
{
;Code between these brackets, gets executed, while %Test is smaller than 10
;When its 10, it wont jump back to first bracket.
set %Test %Test + 1
}
display ok %Test $
halt

%Test holds the value of 10. Notice the condition "%Test < 10". If that becomes true, the script won't jump back to the while loop start, but continues normally.

Note: Only available in EasyUO 1.5+

See also

Main Page Documentation