sqrt EXPR
sqrt

返回 EXPR 的正平方根。如果省略 EXPR,则使用 $_。仅对非负操作数有效,除非您已加载 Math::Complex 模块。

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