Let Statement
Atribuas valoron al variablo.
Sintakso:
[Let] variable = expression
Parametroj:
variable: Variable that you want to assign a value to. Value and variable type must be compatible.
Kiel en plejmultaj dialektoj de BASIC, la ŝlosilvorto Let ne estas deviga.
Ekzemplo:
Sub ExampleLet
Dim sText As String
Let sText = "Las Vegas"
MsgBox Len(sText) REM Liveras 9
End Sub