IBM Lotus Symphony
|
Assigns a value to a variable.
[Let] VarName=Expression
VarName: Variable that you want to assign a value to. Value and variable type must be compatible.
![]() |
As in most BASIC dialects, the keyword Let is optional. |
Sub ExampleLen
Dim sText as String
Let sText = "Las Vegas"
msgbox Len(sText) REM returns 9
End Sub