Compute the square root of a number.
returnedFlt = sqrt(numFlt)
returnedFlt - type: float
numFlt - type: float
The square root of the given number.
Analogous to the sqrt function in C/C++. A negative argument is an error.
@CODE
"output.txt" << sqrt(16) << "\n";
@@CODE
Outputs:
4