The mathLib.sqrt() math function returns the square root of a number. The function operates on any number that is greater than or equal to zero.
mathLib.sqrt(numericVariable FLOAT in) returns (result FLOAT)
myVar INT=4; result ANY; result = mathLib.sqrt(myVar); // result=2.0 (output is FLOAT)