Let instrukzioa
Balioa esleitzen dio aldagai bati.
Sintaxia:
[Let] variable = expression
Parametroak:
variable: Variable that you want to assign a value to. Value and variable type must be compatible.
BASIC-eko dialekto askotan bezala, Let gako-hitza aukerakoa da.
Adibidea:
Sub ExampleLet
Dim sText As String
Let sText = "Las Vegas"
MsgBox Len(sText) ' 9 itzultzen du
End Sub