Rebooting the QBasic we all know and love!
Returns the square root of an expression.
SQR(numeric_expression)
SQR
numeric_expression is any non-negative numeric expression.
FOR i = 0 TO 100 PRINT i; SQR(i) NEXT i