Exponentiate.
Source position: mathh.inc line 127
function Exp(  | 
d: ValReal  | 
):ValReal;  | 
Exp returns the exponent of X, i.e. the number e to the power X.
None.
  | 
Calculate logarithm.  | 
Program Example22; { Program to demonstrate the Exp function. } begin Writeln (Exp(1):8:2); { Should print 2.72 } end.