home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 11 Util / 11-Util.zip / NICE10.ZIP / COUNTER.CMD next >
OS/2 REXX Batch file  |  1992-03-19  |  240b  |  10 lines

  1. /* This is a sample program distributed with NICE.EXE package.
  2.    (C)1992 Turgut Kalfaoglu <TURGUT@TREARN.BITNET>
  3.                             <TURGUT@FRORS12.BITNET>
  4. */
  5. Say 'Counting from 1 to 4000...'
  6. Do i=1 to 4000
  7.    Say i
  8. End
  9.  
  10.