sqr( expression )
sqrt( expression )
Calculates the square root expression. A similar result can be obtained by erecting expression i> to the power 1/2. Introduced for compatibility with other versions of BASIC.
print sqr(4) print sqr(2) print 2^(1/2)will print
2 1.414214 1.414214
0.9.6.51