home *** CD-ROM | disk | FTP | other *** search
/ DP Tool Club 17 / CD_ASCQ_17_101194.iso / vrac_os2 / zoc195.zip / INSTALL.FIL / SCRIPT / RXSAMPLE / 1_FIRST next >
Text File  |  1993-10-07  |  315b  |  17 lines

  1. ////////////////////////////////////////////////////////
  2. // OUR FIRST SCRIPT
  3. ////////////////////////////////////////////////////////
  4.  
  5. //    comments may begin with //
  6. #    or with # (if you like that better)
  7.  
  8. //    clear the screen
  9. cls
  10.  
  11. //    say something
  12. write "Hello "
  13. writeln "World!"
  14.  
  15. //    end it
  16. endscript
  17.