home *** CD-ROM | disk | FTP | other *** search
/ Amiga ISO Collection / AmigaUtilCD2.iso / Programming / Basic / BLZ_EXD.DMS / in.adf / amigamode / ARexx / roger2.rexx < prev    next >
Encoding:
OS/2 REXX Batch file  |  1994-09-05  |  257 b   |  10 lines

  1. /* Roger script */
  2.  
  3.     address 'BPAINT2' /*NOT really need as you are calling this from BPAINT so it is the Default address */
  4.     DO i = 1 To 5
  5.      MYBOX 10*i 10*i (10*i)+10 (10*i)+10 20
  6.      mycirc 50 50 (i*4)
  7.     End i
  8.     EXIT "Script Completed OK!"
  9.  
  10.