I was toying around with macros and clos, where I created an \"object\" macro to create instances
(defmacro object (class &rest args) `(make-instance \
Try playing with something like this:
(let ((a 'a) (dash '-) (b 'b)) `(,a,dash,b))
The other possibilities is to use intern, or more user friendly, alexandria's symbolicate.