home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 18 REXX / 18-REXX.zip / I265.ZIP / iterate.cmd < prev    next >
OS/2 REXX Batch file  |  1992-08-05  |  138b  |  7 lines

  1. /* ITERATE.CMD */
  2. do ix=1 to 10
  3.      say ix': Always say this'
  4.      if ix < 3 then iterate
  5.      say ix':but only this if x > 2'
  6. end
  7.