Language Reference

CALL Statement

calls a subroutine or function

CALL name <(arguments)> ;

The inputs to the CALL statement are as follows:
name
is the name of a user-defined module or an IML subroutine or function.

arguments
are arguments to the module or subroutine.
The CALL statement executes a subroutine. The order of resolution for the CALL statement is as follows:
  1. IML built-in subroutine
  2. user-defined module
This resolution order needs to be considered only if you have defined a module with the same name as an IML built-in subroutine.

See also the section on the RUN statement.

Previous Page | Next Page | Top of Page