log function

num log(
  1. num x
)

Implementation

num log(num x) {
  return math.log(x);
}