log function

num log(
  1. num x
)

Computes the logarithm of the value x to the given base.

Implementation

num log(num x) => math.log(x);