include

インクルードファイルに移る。

include '<include file name>'

解説

引数に指定したマクロファイルを読み込み、マクロ実行を行う。実行終了後、includeコマンドの次の行から処理が再開される。
なお、includeのネストは 9 までである。

-----メインファイル"main.ttl"------
i=10
:loop
; インクルードファイルへ移る。
include 'sub.ttl'
if i>=0 goto loop
end
-----メインファイル終わり----------

-----インクルードファイル"sub.ttl"----
if i<0 then
  messagebox 'error!' 'sub'
  ; メインファイルへ戻る。
  exit
endif
i = i - 1
; メインファイルへ戻る。
-----インクルードファイル終わり-------

参照

注: マクロファイルの読み込み
exit