Passing Information by Using Arguments

About this task

A way to pass information to either internal or external subroutines or functions is through arguments. When calling a subroutine, you can pass up to 20 arguments separated by commas on the CALL instruction as follows:
CALL subroutine_name  argument1, argument2, argument3,…
In a function call, you can pass up to 20 arguments separated by commas.
function(argument1,argument2,argument3,…)

Task Task

Feedback


Timestamp icon Last updated: Tuesday, 7 January 2014


http://pic.dhe.ibm.com/infocenter/cicsts/v5r1/topic/com.ibm.cics.rexx.doc//dfhrx/passarg.html