home *** CD-ROM | disk | FTP | other *** search
/ NetNews Usenet Archive 1993 #3 / NN_1993_3.iso / spool / comp / lang / rexx / 1505 < prev    next >
Encoding:
Internet Message Format  |  1993-01-22  |  1.4 KB

  1. Path: sparky!uunet!mcsun!sunic!sics.se!vall!lee!johan-ku
  2. From: johan-ku@lee.enet.dec.com (Johan Kullberg)
  3. Newsgroups: comp.lang.rexx
  4. Subject: Re: rexx in tso environme
  5. Message-ID: <2214@vall.dsv.su.se>
  6. Date: 22 Jan 93 12:03:03 GMT
  7. References: <1993Jan21.4414.2180@dosgate>
  8. Sender: newsuser@vall.dsv.su.se
  9. Reply-To: johan-ku@lee.enet.dec.com (Johan Kullberg)
  10. Distribution: comp
  11. Organization: Digital Equipment Corporation
  12. Lines: 20
  13.  
  14.  
  15. A REXX program in TSO environment is created just like any TSO dataset:
  16. You first allocate a dataset (the simplest way to do this is by using ISPF menus).
  17. Then simply enter the code.
  18. The answer to Your questions one by one:
  19. 1) As I've already written, allocate a dataset, for example username.MYPROG.EXEC
  20.    Edit the file; (the simplest way here too is to do it by using ISPF menus).
  21. 2) The very first record of the code depends on how You are going to execute it.
  22.     The normal way to begin the code, /* THIS IS A COMMENT */, enables You to
  23.    execute by issuing: EXEC MYPROG EXEC
  24.     However, if the first record is /* REXX */ , the program can be allocated 
  25.    like a TSO CLIST program which means that it can be run by issuing:
  26.     MYPROG  
  27. 3)  I don't know if there is a REXX compiler released yet for TSO.
  28. 4)  (See under 2)
  29. 5)  I recommend the "TSO Extensions REXX User's Guide" or "TSO Extensions REXX
  30.  REference".
  31. Yours sincerely, JOhan Kullberg at Univ. of Stockholm
  32.  
  33.  
  34.