LibreOffice 24.8 abi
Omistab muutujale vÀÀrtuse.
[Let] variable = expression
variable: Variable that you want to assign a value to. Value and variable type must be compatible.
Nagu enamikus BASICu dialektides, pole vÔtmesÔna Let kohustuslik.
Sub ExampleLet
Dim sText As String
Let sText = "Las Vegas"
MsgBox Len(sText) REM tagastab 9
End Sub