9.0

199
Log(Num)
Group
Math
Description
Return the natural logarithm.
Parameter Description
Num Return the natural logarithm of this numeric value. The value e is approximately
2.718282.
Example
Sub Main
Debug
.Print Log(1) ' 0
End
Sub
LSet Instruction
Syntax
LSet strvar = str
-or-
LSet usertypevar1
= usertypevar2
Group
Assignment
Description
Form 1: Assign the value of str to strvar. Shorten str by removing trailing chars (or extend with blanks). The
previous length strvar
is maintained.
Form 2: Assign the value of usertypevar2
to usertypevar1. If usertypevar2 is longer than usertypevar1 then only
copy as much as usertypevar1
can handle.
See Also: RSet
.
Example
Sub Main
S$ = "123"
LSet S$ = "A"
Debug
.Print ".";S$;"." '".A ."
End
Sub