pow function

num pow(
  1. num x,
  2. num exponent
)

Implementation

num pow(num x, num exponent) {
  return math.pow(x, exponent);
}