Previous Page | Next Page

The FCMP Procedure

OUTARGS Statement


Specifies arguments in an argument list that you want a subroutine to update.
Restriction: Use OUTARGS only with the SUBROUTINE statement.

OUTARGS out-argument-1, ..., out-argument-n;

Arguments

out-argument

specifies arguments from the argument list that you want the subroutine to update.

Tip: If an array is listed in the OUTARGS statement within a routine, then the array is passed "by reference." Otherwise, it is passed "by value."

See SUBROUTINE Statement for an example of how to use the OUTARGS statement in a subroutine.

Previous Page | Next Page | Top of Page