関数・命令 /

GOSUB

【1.0 build 23 追加】

GOSUB <label>
Type: statement

<label> へ飛びます。LABEL を参照して下さい。
RETURN で戻し、GOSUB の続きを実行する事ができます。
SUB または FUNCTION は GOSUB の範囲を制限するものである事に注意して下さい。
外に飛ばす事ができません。

例:

PRINT "Where are you?"
GOSUB there
PRINT "Finished."
END

LABEL there
    PRINT "In a submarine!"
    RETURN