LibreOffice 7.5 Help
Priradí premennej určitú hodnotu.
[Let] variable = expression
variable: Variable that you want to assign a value to. Value and variable type must be compatible.
Rovnako ako vo väčšine variantov BASICu je kľúčové slovo Let nepovinné.
Sub ExampleLet
Dim sText As String
Let sText = "Las Vegas"
MsgBox Len(sText) REM Returns 9
End Sub