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:
- IML built-in subroutine
- 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.
Copyright © 2009 by SAS Institute Inc., Cary, NC, USA. All rights reserved.