Let |
Previous Next |
Let <Variable> = <Expression>
|
Part
|
Description
|
<Variable>
|
Required. The variable to assign the <Expression> to.
|
<Expression>
|
Required. The result or value to assign to the <Variable>.
|
Let a = 5
Let b = a + 2
Print a, b
|