ln function

num ln(
  1. num x
)

Computes the natural logarithm (base E) of the value x.

Implementation

num ln(num x) => math.log(x) / math.e;