make-symbol
builtin-function
(make-symbol &rest args)
Returns an existing symbol or creates a new one. For use by macros.
make-html > (let a 'test1) it: a make-html > (let b (make-symbol "test" 1)) it: b make-html > (eq a b) it: true