LibreOffice 24.8 Help
একটি চলকে মান আরোপ করে।
[Let] variable = expression
variable: Variable that you want to assign a value to. Value and variable type must be compatible.
অধিকাংশ BASIC ভাষার মত, Let কীওয়ার্ডটি ঐচ্ছিক।
Sub ExampleLet
Dim sText As String
Let sText = "Las Vegas"
MsgBox Len(sText) REM Returns 9
End Sub