gensym
gensym — generates a unique symbol.
gensym (prefix_string?)
prefix_stringA character string which will be used as the prefix for the newly generated symbol.
A unique symbol.
This function generates a symbol which does not currently exist by
attaching a unique number to the end of the
prefix_string. If the
prefix_string is nil, use a default prefix.
Gamma>gensym("tag");tag1Gamma>gensym();tmp_sym2Gamma>tag3 = 1;1Gamma>gensym("tag");tag4Gamma>