#constant

Syntax

#constant name value

Description

Constants are special tokens that can be defined to hold a fixed value or string. You can use the constants anywhere in your program to specify items of data that are not going to change throughout your programs execution.

Constants can be used to increase performance of your programs and make your code easier to read. Beware that using constant names that match reserved words like print will cause your program to change radically and should be avoided.

Example

#constant myValue 99
print ( myValue )