Const
Previous  Next

Description: Defines a constant variable. Constants must be defined before they are used.

     Syntax:

Const #<Variable> = <Value>

Part
Description
<Variable>
Required. This is the variable name.
<Argument>
Required. This is the value of the constant variable. This value must be a numerical value.

Notes: All constants begin with # sign. This means #a and a& are different variables. Constant variables are substituted for their numerical value before compiling.

Example:

        Const #true = 1
        If #true Then Print "True!"