  CALL

   CALL <sub name> [TO <var>]

   Type: statement

   <sub name> がある場合、プログラムの終了後に <sub name> ラベルのサブルーチンを呼び出します。 With the optional TO also a function can be invoked which stores the result value in <var>.

   Example:

   CALL fh2cel(72) TO celsius
   PRINT celsius

