home *** CD-ROM | disk | FTP | other *** search
- Xref: sparky comp.lang.rexx:712 comp.os.os2.misc:27335
- Path: sparky!uunet!gatech!usenet.ins.cwru.edu!news.ysu.edu!psuvm!wvnvm!jay
- Date: Thu, 13 Aug 1992 16:54:02 EDT
- From: James Justice <JAY@wvnvm.wvnet.edu>
- Message-ID: <92226.165402JAY@wvnvm.wvnet.edu>
- Newsgroups: comp.lang.rexx,comp.os.os2.misc
- Subject: Re: Stem vars as arguments?
- References: <ednstras.713591629@kraken> <1992Aug13.091449.11425@lri.fr>
- Lines: 17
-
- REXX does allow a stem to be EXPOSED.
-
- ---Cut and Paste ---
- /**/
- t.1 = '1'
- t.2 = '2'
- t.3 = '3'
- Call tryit
-
- Exit
-
- tryit: Procedure EXPOSE t.
- Say t.1 t.2 t.3
- Return
- ---Cut and Paste ---
-
- This works with "1 2 3" being printed out!
-