home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Amiga Games 1996 January
/
amigagames-cdrom-1996-01.iso
/
arexx
/
dt_quick.rexx
< prev
next >
Wrap
OS/2 REXX Batch file
|
1994-04-16
|
222b
|
19 lines
/* DeliTracker - toggles quickstart */
address 'DELITRACKER'
options results
status G qst
if result == "no" then do
quick yes
say "Quickstart is now on..."
end
else do
quick no
say "Quickstart is now off..."
end