home *** CD-ROM | disk | FTP | other *** search
/ Gold Fish 2 / goldfish_vol2_cd1.bin / files / util / cdity / telebase / rexx / test.rexx < prev   
Encoding:
OS/2 REXX Batch file  |  1994-02-12  |  126 b   |  10 lines

  1. /* Example of  */
  2.  
  3. limit = "20"; number = 1
  4.  
  5. do i = 1 to limit
  6.    number = i * number
  7.    say "iteration"i"Number="number
  8. end
  9.  
  10.