.he 'GENSYM''Page %'
.fo 'Steven Hardy''January 78'
GENSYM	This function takes a word as argument and produces a new word
made of that word followed by a number.  However, if applied tothe same
word again, it will use a different number.  E.g.
 	: GENSYM("CAT"), GENSYM("CAT") =>
 	** CAT1 CAT2
 	: GENSYM("LINE"), GENSYM("LINE") =>
 	** LINE1 LINE2
 	: GENSYM("CAT") =>
 	** CAT3
.br
GENSYM remembers the number it last used for a given word, using
NEWASSOC.  GENSYM is often useful in a program which creates
objects which need to be given names so that information about the objects
can easily be printed out.
