The constants are language elements whose value is fixed once and for all. This value cannot be modified during the execution of the program.
Example
CONSTANTE
VATRate = 20
END
Syntax
Declaring one or more constants
CONSTANT
<Name of Constant 1> = <Value 1>
<Name of Constant 2> = <Value 2>
END