home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 18 REXX / 18-REXX.zip / netrexx.zip / NetRexx / comment.txt < prev    next >
Text File  |  1998-02-10  |  193b  |  7 lines

  1. /* This is a file with block comments and line comments */
  2.  
  3. loop i=1 to 10      /* loop ten times */
  4.   say i'...'        /* display progress */
  5.   end i             /* end of the loop */
  6.  
  7.