CONST


    CONST constantName = expression {, constantName = expression }
    /code

CONSTANT


    CONSTANT constantName = expression {, constantName = expression }


Declare a variable to be a constant. Constants are similar to variables, except they cannot be assigned values.

    ' Declare the name of the program
CONST ProgName = "My Cool Program",
    Version = "1.0"