Let
Previous  Next

Description: Assigns an expression to a variable

     Syntax:

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>.

Example:

        Let a = 5
        Let b = a + 2
        Print a, b