Constants and Variables in Verse
Constants
A constant is a location where a value is stored, and its value cannot change during the runtime of the program.
To create a constant, you have to specify its identifier and type, known as declaring a constant, and provide a value for the constant, known as initializing a constant.
A constant must be initialized when it is declared, and must be declared before it can be used.
Constant creation has the following syntax:
Verse
Identifier : type = expression
Identifier : type = expression
Copy full snippet(1 line long)

You're reading a preview
The full reference is free for BrainDeadGuild Discord members — sign in to read it all, or open the original at the source.
Sign in with your BrainDead.TV / BrainDeadGuild Discord account for full access.