home *** CD-ROM | disk | FTP | other *** search
- /*
- ** This script shows how to get information
- ** from the ARexx port of mathX
- */
-
- options results
- ADDRESS 'MATHX.1'
-
- INFO TITLE
- title = result
- SAY "Title......: "title
-
- INFO AUTHOR
- author = result
- SAY "Author.....: "author
-
- INFO COPYRIGHT
- copyright = result
- SAY "Copyright..: "copyright
-
- INFO DESCRIPTION
- description = result
- SAY "Description: "description
-
- INFO VERSION
- version = result
- SAY "Version....: "version
-
- INFO BASE
- base = result
- SAY "Basename.....: "base
-
- INFO SCREEN
- screen = result
- SAY "Screen.......: "screen
-
- GETFUNCTION PLAIN
- func = result
- SAY "PlainFunction: "func
-
- GETFUNCTION MS30
- func = result
- SAY "MSFunction...: "func
-
- HELP 't:mathXHelp'
- ADDRESS command "TYPE t:mathXHelp"
- ADDRESS command "delete >NIL: t:mathXHelp"
-