SQR (real-exp)

Returns the positive square root of the value of the expression. real-exp must be a positive number.

Program Example

00100 REM The SQR function
00110 A0 = 9
00120 PRINT SQR(9),SQR(A0)
00130 END

Try it