While

From Wiki
Revision as of 11:00, 18 August 2005 by 80.222.152.154 (Talk)

Jump to: navigation, search

While

Flow Control

Synopsis

while ( expression ) { }

Description

while command loops the code inside brackets, untill expression is True or until break command.

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 wont jump back to while loop start, but continues normally.

See Also

break continue for

Main_Page Documentation Flow Control