ABBR statement
The ABBR statement defines an alternative symbol for the reserved word specified. The symbol can be used when you code a program.
ABBR reserved-word: user-word [comments]
Note:
- The user-word becomes a reserved word and can be used in place of the reserved-word specified in this statement.
- The reserved-word remains a reserved word with its original definition.
- The source listing shows the original source—the symbol as you coded it.
- The reserved word is used in compiler output—other listings, some messages, and so forth.
In the following example, REDEF and SEP become abbreviations that
can be used in source programs. The appropriate reaction to the use
of REDEFINES and SEPARATE takes place when the source program is compiled.
ABBR REDEFINES: REDEF
SEPARATE: SEP