exit procedure

働き

プロシージャの実行を終了します。

文法

exit procedure

説明

exit procedure 命令は、プロシージャの実行を終了させます。実際には、exit procedure 命令が実行されると、対応する end procedure 命令の行にジャンプします。

サンプルプログラム

rem end procedure

procedure gcd a,b
  if b=0 then
    print abs(a)
    exit procedure
  end if
  call gcd b,a%b
end procedure

call gcd 1920,1080