home *** CD-ROM | disk | FTP | other *** search
/ NetNews Usenet Archive 1993 #3 / NN_1993_3.iso / spool / comp / lang / rexx / 1499 < prev    next >
Encoding:
Text File  |  1993-01-21  |  1.1 KB  |  30 lines

  1. Newsgroups: comp.lang.rexx
  2. Path: sparky!uunet!spool.mu.edu!agate!doc.ic.ac.uk!warwick!pavo.csi.cam.ac.uk!ag129
  3. From: ag129@cus.cam.ac.uk (Alasdair Grant)
  4. Subject: Re: rexx in tso environme
  5. Message-ID: <1993Jan21.143553.22752@infodev.cam.ac.uk>
  6. Sender: news@infodev.cam.ac.uk (USENET news)
  7. Nntp-Posting-Host: bootes.cus.cam.ac.uk
  8. Organization: U of Cambridge, England
  9. References: <1993Jan21.124124.8342@schbbs.mot.com>
  10. Date: Thu, 21 Jan 1993 14:35:53 GMT
  11. Lines: 17
  12.  
  13. In article <1993Jan21.124124.8342@schbbs.mot.com> TTZ488@waccvm.corp.mot.com (Hugh Dunn) writes:
  14. >> 1) How does one create a Rexx program in TSO?
  15. >Put it in a file called 'pgname.CLIST' with the first line of
  16. >the file being a REXX comment e.g.   /* REXX */
  17. >> 2) Does TSO recognize a Rexx program by the same comment card that OS/2
  18. >>    recognizes Rexx?
  19. >See above
  20.  
  21. You can also put it in a file called MYFILE.EXEC and call it using
  22. EXEC MYFILE EXEC.  This way, you do _not_ need a comment, i.e. the
  23. file consisting entirely of
  24.  
  25.   say 'Hello'
  26.  
  27. will work. But it's more portable to start with a comment of some sort.
  28.  
  29. p.s. Rexx on TSO is a real pig. Not nearly as fun as on CMS.
  30.