W3cubDocs

/Perl 5.26

sqrt

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.

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

© 1993–2016 Larry Wall and others
Licensed under the GNU General Public License version 1 or later, or the Artistic License.
The Perl logo is a trademark of the Perl Foundation.
https://perldoc.perl.org/5.26.0/functions/sqrt.html