home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Frozen Fish 2: PC
/
frozenfish_august_1995.bin
/
bbs
/
d09xx
/
d0916.lha
/
MathPlot
/
Macros
/
testrx.rexx
< prev
next >
Wrap
OS/2 REXX Batch file
|
1993-10-04
|
374b
|
21 lines
/* ARexx Skript zum Testen des ARexxBox-Tests :-) */
address 'MPlot_ARexx'
options results
/* welche Befehle gibt's denn so? */
help stem a.
/*
This would give a simple list of all commands
do i=0 to a.commandlist.count-1
say a.commandlist.i
end
*/
do i=0 to a.commandlist.count-1
help a.commandlist.i var hilfe
say hilfe
drop hilfe /* This drop is needed ! */
end