Calculates the exponential.
Exp(x)
(f) x floating point number.
(f) the value of the exponential ( e ** x).
The exp function returns the exponential function of the floating point argument (x).
real=AskLine("Exponential", "Enter a number", "1.23", 0) answer=Exp(real) Message("Exponential of %real% is",answer)