Is the only way to define a constant by using the variable name and then the "short cut" character?
If so.. I would like to recommend the use of the CONST keyword in future version of the PB syntax.
Code:
e.g. A$ = "Apple", for a constant string X% = 1, for a constant integer
Code:
e.g. CONST A as String = "Apple", for a constant string CONST X as Integer = 1, for a constant integer
Comment