sqrt function

num sqrt(
  1. num x
)

Computes the positive square root of the value x.

Implementation

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