Log Procedure

Returns the natural (base-e) logarithm of a number. Use the Log10 function for base-10 logarithms.
The built-in constant EULER contains the value of the mathematical constant e.
Declaration
function Log(x as Number) as Number

Parameters

Return value

Number — Base-e logarithm of x.

Example

Code
print Log(EULER)
Output
1