home *** CD-ROM | disk | FTP | other *** search
/ NetNews Usenet Archive 1992 #18 / NN_1992_18.iso / spool / comp / lang / rexx / 712 < prev    next >
Encoding:
Internet Message Format  |  1992-08-13  |  646 b 

  1. Xref: sparky comp.lang.rexx:712 comp.os.os2.misc:27335
  2. Path: sparky!uunet!gatech!usenet.ins.cwru.edu!news.ysu.edu!psuvm!wvnvm!jay
  3. Date: Thu, 13 Aug 1992 16:54:02 EDT
  4. From: James Justice <JAY@wvnvm.wvnet.edu>
  5. Message-ID: <92226.165402JAY@wvnvm.wvnet.edu>
  6. Newsgroups: comp.lang.rexx,comp.os.os2.misc
  7. Subject: Re: Stem vars as arguments?
  8. References: <ednstras.713591629@kraken> <1992Aug13.091449.11425@lri.fr>
  9. Lines: 17
  10.  
  11. REXX does allow a stem to be EXPOSED.
  12.  
  13. ---Cut and Paste ---
  14. /**/
  15. t.1 = '1'
  16. t.2 = '2'
  17. t.3 = '3'
  18. Call tryit
  19.  
  20. Exit
  21.  
  22. tryit: Procedure EXPOSE t.
  23. Say t.1 t.2 t.3
  24. Return
  25. ---Cut and Paste ---
  26.  
  27. This works with "1 2 3" being printed out!
  28.