sqr( expression )
sqrt( expression )
Returns the square root of the number expression. A similar result can be obtained by erecting expression to the power 1/2. Introduced for compatibility with other versions of BASIC.
print sqr(2) print sqrt(10)will print
1.414214 3.162278
0.9.6.51