home *** CD-ROM | disk | FTP | other *** search
/ Frozen Fish 1: Amiga / FrozenFish-Apr94.iso / bbs / alib / d9xx / d916 / mathplot.lha / MathPlot / Macros / testrx.rexx < prev    next >
OS/2 REXX Batch file  |  1993-10-04  |  374b  |  21 lines

  1. /* ARexx Skript zum Testen des ARexxBox-Tests :-) */
  2.  
  3. address 'MPlot_ARexx'
  4. options results
  5.  
  6. /* welche Befehle gibt's denn so? */
  7. help stem a.
  8. /*
  9. This would give a simple list of all commands 
  10.  
  11. do i=0 to a.commandlist.count-1
  12.  say a.commandlist.i
  13. end
  14. */
  15.  
  16. do i=0 to a.commandlist.count-1
  17.  help a.commandlist.i var hilfe
  18.  say hilfe
  19.  drop hilfe /* This drop is needed ! */
  20. end
  21.