home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Amiga ISO Collection
/
AmigaUtilCD2.iso
/
Programming
/
Basic
/
bb_exa.dms
/
in.adf
/
amigamode
/
ARexx
/
roger2.rexx
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
NeXTSTEP
RISC OS/Acorn
UTF-8
Wrap
OS/2 REXX Batch file
|
1995-09-18
|
257 b
|
10 lines
/* Roger script */
address 'BPAINT2' /*NOT really need as you are calling this from BPAINT so it is the Default address */
DO i = 1 To 5
MYBOX 10*i 10*i (10*i)+10 (10*i)+10 20
mycirc 50 50 (i*4)
End i
EXIT "Script Completed OK!"