HELP SYSSYNONYM J. Gibson, July 1983
syssynonym(<word1>, <word2>)
SYSSYNONYM associates <word1> with whatever identifier <word2> is currently
associated with. Thus afterwards the two words are synonymous as variables or
constants, e.g.
vars x; 123 -> x;
syssynonym("y", "x");
y =>
** 123
[a b c d] -> y;
x =>
** [a b c d]
See also HELP
*SYSCANCEL - cancels a word as a variable or constant
*VARS - on variables and their declaration
*CONSTANT - on constants and their declaration
*SYSCANCELWORD - removes a word from the dictionary
*CANCEL - a macro simplifying the use of SYSCANCELAuthor: J. Gibson, July 1983