Difference between revisions of "Call"
From Wiki
Line 12: | Line 12: | ||
− | + | ==Example== | |
<pre> | <pre> | ||
call subs.txt recall %runebookid %runenum | call subs.txt recall %runebookid %runenum | ||
Line 18: | Line 18: | ||
</pre> | </pre> | ||
− | == Releated Commands == | + | ==Releated Commands== |
{| style="background:gainsboro; color:black; border: 2px #aaa solid;" | {| style="background:gainsboro; color:black; border: 2px #aaa solid;" | ||
| Width=250px align=center | [[Exit]] | | Width=250px align=center | [[Exit]] | ||
|} | |} | ||
− | {{ | + | =See Also= |
+ | {{Flow Control}} |
Revision as of 16:51, 5 September 2007
Synopsis
call {file} [parameter...]
Description
call command will transfer execution to another script. It will run the script until it meets the exit command or the end of the file.
Note: | Right now EasyUO doesn't really support strings. Therefore, CALL won't work if the path to a file contains any spaces. Use the DOS short filename syntax to get around this problem.
|
Example
call subs.txt recall %runebookid %runenum halt
Releated Commands
Exit |
See Also
Flow Control
- Flow control commands allow scripts to make decisions 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 |