Difference between revisions of "While"

From Wiki
Jump to: navigation, search
 
Line 30: Line 30:
 
----
 
----
 
{|
 
{|
| Width=200px | [[Main_Page]] || Width=200px | [[Documentation]] || Width=200px |  
+
| Width=200px | [[Main_Page]] || Width=200px | [[Documentation]] || Width=200px | [[Documentation#Flow_Control|Flow Control]]
[[Documentation#Flow_Control|Flow Control]]
+
 
|}
 
|}

Revision as of 10:20, 18 August 2005

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

See Also

break



Main_Page Documentation Flow Control