CONST id = expression [, id = expression] … etc

Creates constant identifiers that cannot be changed once created.

This command is an alternative to DIM for declaring values that should remain constant throughout the program. Unlike DIM, which declares modifiable variables, CONST ensures the values cannot be altered after initialization.

For declaring variables, see DIM.