perl-5.38.0
sqrt EXPR
sqrt

Return the positive square root of EXPR. If EXPR is omitted, uses $_. Works only for non-negative operands unless you've loaded the Math::Complex module.

EXPR の正の平方根を返します。 EXPR が省略されると、$_ を使います。 Math::Complex モジュールを使わない場合は、負の数の引数は 扱えません。

    use Math::Complex;
    print sqrt(-4);    # prints 2i