#CONSTANT
You can use this command to define constants within your program. 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 and WAIT will cause your program to change radically and should be avoided.
SYNTAX
#CONSTANT ConstantName ConstantValue
RELATED INFO
CORE Commands Menu
Index
EXAMPLE
View Showcase Example
View Usage Example