Moves control to the include file.
include '<include file name>'
Loads the specified macro file and interprets the macro. When the macro execution ends, the next line of the include command is restarted.
Also, the include nest level is 9.
----- Main file "main.ttl" ------ i=10 :loop ; Move to the include file. include 'sub.ttl' if i>=0 goto loop end ----- End of "main.ttl" --------- ----- Include file "sub.ttl" ---- if i<0 then messagebox 'error!' 'sub' ; Go back to the main file. exit endif i = i - 1 ; Go back to the main file. ----- End of "sub.ttl" ----------