Difference between revisions of "Template:Flow Control"

From Wiki
Jump to: navigation, search
 
Line 2: Line 2:
 
[[Category:Flow Control]]
 
[[Category:Flow Control]]
 
*The flow control commands allow scripts to make decision's based on the evaluation of boolean expressions.
 
*The flow control commands allow scripts to make decision's based on the evaluation of boolean expressions.
#[[Break]]
+
{|
#[[Call]]
+
| style="width:150px" | [[break]] || Jumps to first statement outside of loop
#[[Continue]]
+
|-
#[[Exit]]
+
| [[call]] || Transfers execution to another script file
#[[For]]
+
|-
#[[Gosub]]
+
| [[continue]] || Jumps execution of a loop to next iteration
#[[Goto]]
+
|-
#[[Halt]]
+
| [[exit]] || Exits a called script
#[[If]]
+
|-
#[[Pause]]
+
| [[for]] || Creates a counting loop
#[[Repeat..until]]
+
|-
#[[Return]]
+
| [[gosub]] || Transfers execution to the matching sub
#[[Stop]]
+
|-
#[[Sub]]
+
| [[goto]] || Jumps to another part of the script given by a label
#[[While]]
+
|-
 +
| [[halt]] || Stops the script
 +
|-
 +
| [[if]] || Executes code based on the evaluation of an expression
 +
|-
 +
| [[pause]] || Temporarily stops the execution of the current script
 +
|-
 +
| [[repeat..until]] || Creates a loop that checks condition after execution
 +
|-
 +
| [[return]] || Returns from a sub
 +
|-
 +
| [[stop]] || Ends the script
 +
|-
 +
| [[while]] || Creates a loop that checks condition before execution
 +
|}

Revision as of 16:07, 5 September 2007

Flow Control

  • The flow control commands allow scripts to make decision's based on the evaluation of boolean expressions.
break Jumps to first statement outside of loop
call Transfers execution to another script file
continue Jumps execution of a loop to next iteration
exit Exits a called script
for Creates a counting loop
gosub Transfers execution to the matching sub
goto Jumps to another part of the script given by a label
halt Stops the script
if Executes code based on the evaluation of an expression
pause Temporarily stops the execution of the current script
repeat..until Creates a loop that checks condition after execution
return Returns from a sub
stop Ends the script
while Creates a loop that checks condition before execution