home *** CD-ROM | disk | FTP | other *** search
/ World of A1200 / World_Of_A1200.iso / programs / misc / eval / source / src.lha / help.c < prev    next >
Text File  |  1993-04-13  |  10KB  |  200 lines

  1. /*
  2. **
  3. ** HELP.C      Eval help text.
  4. **
  5. ** Will Mennninger, ANSI C
  6. **
  7. */
  8.  
  9. char *bhelp =
  10. "Command line options (aside from expressions)\n"
  11. "---------------------------------------------\n"
  12. "help [n]       Display extended help (start with page n if specified).\n"
  13. "quit           Exit program.\n"
  14. "?              Display brief help (this list).\n"
  15. "?? [n]         Display extended help (start with page n if specified).\n"
  16. "? s            Display status (output type, default bases, etc.).\n"
  17. "? v            Display a list of all currently assigned variables.\n"
  18. "? c            Display a list of all pre-assigned constants.\n"
  19. "? f            Display a list of available functions.\n"
  20. "? fl           Display a list of available functions with descriptions.\n"
  21. "? o            Display a list of all operators.\n"
  22. "ibase n        Set input base to n.\n"
  23. "obase n        Set output base to n.\n"
  24. "sci            Toggle scientific notation output on/off.\n"
  25. "fix            Toggle fixed precision on/off.\n"
  26. "dplace n       Set the number of digits after the decimal in fixed prec.\n"
  27. "sigfig n       Set the number of significant figures to be printed.\n"
  28. "maxexp n       Set exponent at which output switches to sci format.\n"
  29. ">filename      Write to script file, filename.\n"
  30. ">              Terminate write to script file.\n"
  31. "<filename      Read script file, filename.\n"
  32. "wdir dirname   Set write directory for scripts.\n"
  33. "rpath path     Set path for reading scripts.\n";
  34.  
  35. char *ehelp =
  36. "Eval evaluates floating point expressions and functions.  It has    p. 1/9\n"
  37. "several built in operators and functions, and can take input and\n"
  38. "display output in a variety of formats for any number base.\n"
  39. "\n"
  40. "A simple example-- Type:\n"
  41. "\n"
  42. "Ex> x = sin(2.58)*sqrt(10)+_pi*_mu0\n"
  43. "\n"
  44. "The value on the right is computed, printed, and assigned to 'x'.\n"
  45. "_pi and _mu0 are two of many pre-assigned constants.  You may use any\n"
  46. "previously assigned variable in new expressions.  Variable names are\n"
  47. "allowed to be up to 16 characters long.\n"
  48. "\n"
  49. "A single double quote (\") refers to the last value displayed.  Example:\n"
  50. "Ex> sqrt(2)\n"
  51. "1.414213562\n"
  52. "Ex> 20*\"*\"\n"
  53. "40\n"
  54. "\f\n"
  55. "Number bases                                                        p. 2/9\n"
  56. "------------\n"
  57. "Values can be displayed in any number base from 2 to 36.  You can set\n"
  58. "the default input and output bases with the \"ibase\" and \"obase\"\n"
  59. "commands, respectively.\n"
  60. "\n"
  61. "Exponent representation\n"
  62. "-----------------------\n"
  63. "If you are working in a base above 14, use a \\ instead of an E for\n"
  64. "scientific notation.  E.g. If you are working in base 16,\n"
  65. "A\\10 = hex A times 10^10, where both 10's are in hex.  So the\n"
  66. "decimal result would be 10*16^16 = 1.8447e20.\n"
  67. "\f\n"
  68. "Overriding the default number bases                                 p. 3/9\n"
  69. "-----------------------------------\n"
  70. "The default input base can be overridden in typical C fashion for hex:\n"
  71. "0xffee = hex FFEE.  However a preceding \"0\" does NOT convert to octal.\n"
  72. "See below for converting to octal.  To specify any base as an override,\n"
  73. "use \\bxxxxx.xxxExxx where b is a single character representing the base\n"
  74. "('2'-'9', '0'=10, 'A'-'Z'=11-36), x is a digit in the base, and E (or\n"
  75. "\"\\\" for bases greater than 14) is used for scientific notation.\n"
  76. "Example:  \\2101e101 would be 101e101 base 2, having a decimal equivalent\n"
  77. "of 5*2^5=160.  Other special override prefixes:  &h=hex, &b=binary,\n"
  78. "&o=octal, &d=decimal, $=hex.\n"
  79. "To override the default output base, put any base prefix (e.g. 0x, &h)\n"
  80. "with a space after it at the beginning of the expression line.\n"
  81. "\n"
  82. "The \"literal variable\" character\n"
  83. "--------------------------------\n"
  84. "If you are working in a default input base where there may be confusion\n"
  85. "as to whether an input is a variable or a number, use ! in front of the\n"
  86. "input to force the variable value:  E.g. In base 16, A = 10, but\n"
  87. "!A = the value of the variable \"A\".\n"
  88. "\f\n"
  89. "Special Commands                                                    p. 4/9\n"
  90. "----------------\n"
  91. "ibase n   Set the default input base.  n ranges from 2 to 36.\n"
  92. "obase n   Set the default output base.  n ranges from 2 to 36.\n"
  93. "sci       Toggle scientific notation output on/off.\n"
  94. "fix       Toggle fixed precision on/off.\n"
  95. "dplace n  Set the number of digits after the decimal in fixed\n"
  96. "          precision notation.  Ignored in scientific notation.\n"
  97. "sigfig n  Set the number of significant figures to be printed.\n"
  98. "          Use a value less than 1 for maximum accuracy.\n"
  99. "maxexp n  Set the exponent at which output automatically switches\n"
  100. "          to scientific notation format.  Use -1 for no limit.\n"
  101. "help [n]  Display extended help (starting with page n if specified).\n"
  102. "quit      Exit program.\n"
  103. "\n"
  104. "Note:  The argument, n, for the above commands, is always treated as a\n"
  105. "       decimal (base 10) number, regardless of the default input base.\n"
  106. "\f\n"
  107. "Queries (the space after the ? is optional)                         p. 5/9\n"
  108. "-------\n"
  109. "?       Display brief help.\n"
  110. "? ? [n] Display extended help (starting with page n if specified).\n"
  111. "? s     Display status (output type, default bases, etc.)\n"
  112. "? v     Display a list of all currently assigned variables\n"
  113. "? c     Display a list of all pre-assigned constants\n"
  114. "? f     Display a short list of available functions\n"
  115. "? fl    Display a list of available functions with one line descriptions\n"
  116. "? o     Display a list of all operators\n"
  117. "\f\n"
  118. "Scripts                                                             p. 6/9\n"
  119. "-------\n"
  120. "Eval can execute script files (files containing a list of Eval commands,\n"
  121. "one per line).  This is a good way to repeat similar calculations again\n"
  122. "and again.  It can also be used to set up Eval the way you like.\n"
  123. "\n"
  124. "Script commands\n"
  125. "---------------\n"
  126. "<filename    Run a script file\n"
  127. ">filename    Write future commands to a script file\n"
  128. ">            End writing to a script file\n"
  129. "\n"
  130. "Script files can also be created or edited using any text editor.\n"
  131. "\n"
  132. "Special Characters (primarily for use in script files)\n"
  133. "------------------------------------------------------\n"
  134. ";  (comment)   Eval ignores commands that begin with a semi-colon.\n"
  135. "@  (be quiet)  Eval will not print any output if you begin a command with @.\n"
  136. "\f\n"
  137. "The Script Read Path and Write Directory                            p. 7/9\n"
  138. "----------------------------------------\n"
  139. "You can set the directory to which script files will be automatically\n"
  140. "written, and you can specify a path of directories that will automatically\n"
  141. "be searched for scripts.\n"
  142. "\n"
  143. "wdir dirname   Eval sets the default writing directory to dirname.\n"
  144. "               NOTE:  Be sure to include a slash at the end of the dir name.\n"
  145. "Example:  wdir /usr/bin/scripts/  (unix systems)\n"
  146. "\n"
  147. "rpath path     Eval sets the script search path to \"path\".  NOTE:  Separate\n"
  148. "               directories with a ; and end each dir name with a slash.\n"
  149. "Example:  rpath /usr/bin/;/usr/bin/scripts/;../scripts/ (unix systems)\n"
  150. "\n"
  151. "Typing wdir or rpath without arguments will clear them.  In reading\n"
  152. "scripts, the current directory is not always searched first, but it is\n"
  153. "always searched last.  If you desire it to be searched first, explicitly\n"
  154. "set it as the first directory in your read path by beginning your read\n"
  155. "path with a ;.  If opening a script for writing causes an error, the\n"
  156. "write directory is ignored, and an attempt to open the file is repeated.\n"
  157. "Type '?s' to see the status of the write directory and read path.\n"
  158. "\f\n"
  159. "Command line arguments for Eval                                     p. 8/9\n"
  160. "-------------------------------\n"
  161. "You can specify a calculation for Eval directly on the command\n"
  162. "line, and Eval will evaluate it and quit.  Example:\n"
  163. "\n"
  164. "C:\\DOS>Eval 4*5 + 22.5   (MS-DOS example)\n"
  165. "42.5\n"
  166. "C:\\DOS>\n"
  167. "\n"
  168. "If your command executes a script, Eval does not quit.  For example:\n"
  169. "\n"
  170. "C:\\DOS>Eval \"<script.evl\"\n"
  171. "\n"
  172. "This executes the commands in the file \"script.evl\" and continues the\n"
  173. "Eval session when they are completed (unless the script ends with a\n"
  174. "\"quit\" command).  Put a @ in front of the < if you do not want the\n"
  175. "script commands echoed to the terminal as they are executed.\n"
  176. "\n"
  177. "The quotes around the argument in the previous example are necessary on\n"
  178. "many operating systems since the \"<\" character is otherwise interpreted\n"
  179. "as a redirection character by the O/S.\n"
  180. "\f\n"
  181. "License Agreement                                                   p. 9/9\n"
  182. "-----------------\n"
  183. "This program is free software; you can redistribute it and/or modify it\n"
  184. "under the terms of the GNU General Public License as published by the\n"
  185. "Free Software Foundation; either version 2 of the License, or any later\n"
  186. "version.\n"
  187. "\n"
  188. "This program is distributed in the hope that it will be useful, but\n"
  189. "WITHOUT ANY WARRANTY; without even the implied warranty of\n"
  190. "MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\n"
  191. "General Public License for more details.\n"
  192. "\n"
  193. "You should have received a copy of the GNU General Public License along\n"
  194. "with this program; if not, write to the Free Software Foundation, Inc.,\n"
  195. "675 Mass Ave, Cambridge, MA 02139, USA.\n"
  196. "\n"
  197. "The author can be contacted at:\n"
  198. "e-mail:     willus@ilm.pfc.mit.edu (til 9/93)\n"
  199. "U.S. mail:  Will Menninger, 45 River St., #2, Boston, MA 02108-1124 (til 9/93)\n";
  200.