Let

Syntax

[Let] Var = Expression

Remarks

Assigns the value of an expression to a variable. The use of Let is optional.

Example

Each of the following instructions assigns the value 100 to the variable A:


Let A = 100
A = 100

See Also

Dim