Is there anything in Clojure that is equivalent to Common Lisp's
symbol-name
function?
Asked
Active
Viewed 724 times
10

Paul Reiners
- 8,576
- 33
- 117
- 202
1 Answers
13
The Clojure name function will return the name of the symbol, instead of the symbol itself.
(name symbol)

octopusgrabbus
- 10,555
- 15
- 68
- 131

Paul Reiners
- 8,576
- 33
- 117
- 202