Constants
This section explains the XDR constant.
XDR constants can be used wherever an integer constant is required.
The definition for a constant is:
const-definition:
"const" const-ident "=" integer
For example, the following defines a constant DOZEN equal
to 12.
const DOZEN = 12; --> #define DOZEN 12