Let Statement
κ°μ λ³μμ ν λΉν©λλ€.
ꡬ문:
[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