home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Amiga ISO Collection
/
AmigaUtilCD2.iso
/
Programming
/
Basic
/
BLZ_EXD.DMS
/
in.adf
/
amigamode
/
ARexx
/
roger3.rexx
< prev
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
NeXTSTEP
RISC OS/Acorn
UTF-8
Wrap
OS/2 REXX Batch file
|
1994-09-05
|
284 b
|
14 lines
/* Roger script */
address 'BPAINT2' /*NOT really need as you are calling this from BPAINT so it is the Default address */
DO i = 150 to 0 by -10
MYLINE 0 150 400 i
END i
DO x = 0 to 400 by 10
MYLINE 400 0 x 150
END x
EXIT "Script Completed OK!"