Purpose : Calculates the square root of a numeric value.
Format: SQRT( value )
Notes: The SQRT function calculates the square root of value. value must be a constant or variable that is equal or greater than zero.
Example:
# Generate a list of
20 square roots.
clear
a = 1
*Repeat
b = sqrt(a)
print "The Square
Root of " a " is " b
a = a + 1
if a < 21
goto repeat
endif
pause
exit