calcSqrt function

num calcSqrt(
  1. num n
)

This function is the same as math.sqrt.

Implementation

num calcSqrt(num n) {
  return math.sqrt(n);
}