
Is it possible to make a package which you can only access by having the actual gensym symbol?
Something like:
(setf *var* (gensym))
(make-package *var* :use '(:cl))
accept this doesn't work, because you can still access the package by the string name of the gensymed variable.