1 EXP The EXP function returns the value of the mathematical constant "e" raised to a specified power. Example A = EXP(4.6) 2 Syntax real-var = EXP(real-exp) Status: 200 OK Content-Type: text/plain; charset=ISO-8859-1 Last-Modified: Mon, 23 Oct 2000 06:15:19 GMT Script-Control: X-stream-mode=1 1 Expressions Expressions consist of operands (numbers, strings, constants, variables, functions, or array elements) separated by: o Arithmetic operators (+, -, *, /, ^, and **) o String concatenation operator (+) o Relational operators (=, <, >, <= or =>, >= or =>, <> or ><, and ==) o Logical operators (NOT, AND, OR, XOR, EQV, and IMP) 2 Truth_values In relational expressions, BASIC generates -1 when the relationship is true and 0 when it is false. In logical expressions, BASIC evaluates any nonzero value as true; zero is always evaluated as false. To avoid unanticipated results, use logical operators on the results of relational expressions. 2 Channel_expression A channel expression is a numeric expression that specifies a channel number associated with a file. A file must be open on the specified channel or BASIC signals an error. A channel expression must be preceded by a pound sign (#).