home *** CD-ROM | disk | FTP | other *** search
/ Amiga ISO Collection / AmigaUtilCD1.iso / Database / FLD-TBRE.LHA / TBase_rexx.lha / 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.