home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Amiga Format CD 1
/
amigaformatcd01.iso
/
demos
/
blitz_basic
/
amigamode
/
arexx
/
roger3.rexx
< prev
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
OS/2 REXX Batch file
|
1996-04-30
|
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!"