Let Statement

वेरिएबल के लिए मूल्य आबंटित करता है.

Syntax:

Let Statement diagram


[Let] variable = expression

पैरामीटर

variable: Variable that you want to assign a value to. Value and variable type must be compatible.

Note Icon

As in most BASIC dialects, the keyword Let is optional.


उदाहरण:


Sub ExampleLet
Dim sText As String
    Let sText = "Las Vegas"
    MsgBox Len(sText) ' returns 9
End Sub

Please support us!