home *** CD-ROM | disk | FTP | other *** search
- /* 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
-