Labels are used to store numeric or string values.
Remarks
Labels are named constants or variables that are used and generated by the compiler to keep track of values throughout the compilation process.
A label can contain a numeric value or a string value. The label's value can be manipulated within expressions.
Label = 10
In the above example, a label (named Label) is having the value 10 assigned to it via the assignment operator.
Result = Label * 2 + 5 .echoln Result
The above example assigns the result of an expression to another label, Result, then passes it as an argument to the echoln/echo directive.