home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Fresh Fish 6
/
FreshFish_September1994.bin
/
new
/
misc
/
math
/
mathplot
/
macros
/
testrx.rexx
< prev
next >
Wrap
OS/2 REXX Batch file
|
1994-07-16
|
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