Php sqrt
<?php
#The sqrt function finds the square root of a number
echo(sqrt(4));
# Outputs 2
echo(sqrt(-4));
#This is an impossible maths equation so, it returns NaN
?>
Rick Astley