Constants are variables whose values cannot be changed after they are first initialized. In dryLang, there are two ways to define constants.
cns KeywordYou can explicitly declare a constant by prefixing it with the cns keyword.
As part of the Write Less Get More philosophy, dryLang provides Auto-Constants. Any variable declared with fully uppercase letters is automatically locked as a constant. You don't even need to use cns.
Note: You can also use
cns UPPERCASE = ...to be explicit, but it's redundant. Full uppercase names are strictly constants no matter what!