home *** CD-ROM | disk | FTP | other *** search
/ Amiga Format CD 2 / amigaformatcd02.iso / demos / blitz_basic / amigamode / arexx / roger2.rexx < prev    next >
OS/2 REXX Batch file  |  1996-05-20  |  257b  |  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.