Thursday, January 3, 2013

Starting with REXX

Sample rexx program:

/* rexx */
Say 'hello world'


Save this in a pds member and just before the member give 'ex'... It would execute this rexx routine and give output as 'hello world'

Note: all rexx should begin with /* rexx */ in the comments... You can prefix or suffix any comment to it....

Say is equivalent to display in cobol...