9.0
241
End Sub
Sqr Function
Syntax
Sqr(Num)
Group
Math
Description
Return the square root.
Parameter Description
Num Return the square root of this numeric value.
Example
Sub Main
Debug
.Print Sqr(9) ' 3
End
Sub
Statement definition
Zero or more instructions. A statement is at least one line long. Begin Dialog, Do, For, If (multiline), Select Case,
While
and With statements are always more than one line long. A single line statement continues on the next line
if it ends a line with a space and an underscore ' _'.
S$ = "This long string is easier to read, " + _
"if it is broken across two lines."
Debug
.Print S$
Static Definition
Syntax
Static name[type][([dim[, ...]])][As [New] type][, ...]
Group
Declaration
Description
A static variable retains it value between procedure calls. Dimension var array(s) using the dims to establish the
minimum and maximum index value for each dimension. If the dim
s are omitted then a scalar (single value)










