home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 18 REXX / 18-REXX.zip / hltrex.zip / rexxloop.cmd < prev   
OS/2 REXX Batch file  |  1993-10-22  |  163b  |  12 lines

  1. /* Rexx program to see what's going on */
  2.  
  3. signal on halt name exitPoint
  4.  
  5. do forever
  6.    say "Hello"
  7.    call syssleep 1
  8. end
  9.  
  10. exitPoint:
  11.   say "Goodbye"
  12.