SQR()

From Liberty BASIC Family
Jump to navigation Jump to search
Supported in Just BASIC Supported in Liberty BASIC Not supported in Liberty BASIC 5 Not supported in Run BASIC

Description

This function returns the square root of the given number or expression.
Negative numbers are not permitted.

Syntax

  1. SQR(Number)

Hints

Place useful hints about this keyword here

Example

Print SQR(2)
Print SQR(3.5)
Print SQR(4)
Print SQR(2*1.5)
End

Useful Procedures

' Place a useful function or sub using this keyword here