home *** CD-ROM | disk | FTP | other *** search
/ Amiga ACS 1998 #4 / amigaacscoverdisc1998-041998.iso / utilities / shareware / scientific / mathx / rexx / getinfos.rexx < prev    next >
Encoding:
OS/2 REXX Batch file  |  1998-03-08  |  741 b   |  48 lines

  1. /*
  2. **  This script shows how to get information
  3. **  from the ARexx port of mathX
  4. */
  5.  
  6. options results
  7. ADDRESS 'MATHX.1'
  8.  
  9. INFO TITLE
  10. title = result
  11. SAY "Title......: "title
  12.  
  13. INFO AUTHOR
  14. author = result
  15. SAY "Author.....: "author
  16.  
  17. INFO COPYRIGHT
  18. copyright = result
  19. SAY "Copyright..: "copyright
  20.  
  21. INFO DESCRIPTION
  22. description = result
  23. SAY "Description: "description
  24.  
  25. INFO VERSION
  26. version = result
  27. SAY "Version....: "version
  28.  
  29. INFO BASE
  30. base = result
  31. SAY "Basename.....: "base
  32.  
  33. INFO SCREEN
  34. screen = result
  35. SAY "Screen.......: "screen
  36.  
  37. GETFUNCTION PLAIN
  38. func = result
  39. SAY "PlainFunction: "func
  40.  
  41. GETFUNCTION MS30
  42. func = result
  43. SAY "MSFunction...: "func
  44.  
  45. HELP 't:mathXHelp'
  46. ADDRESS command "TYPE t:mathXHelp"
  47. ADDRESS command "delete >NIL: t:mathXHelp"
  48.