cfunction
src/core/corelib.c on line 337 , column 1
(symbol & xs )
Creates a symbol by concatenating the elements of `xs` together. If
an element is not a byte sequence , it is converted to bytes via
`describe` . Returns the new symbol.
(symbol "foo" ) # => foo
(def a "foo" )
(symbol a ) # => foo
(symbol a 42 nil ) # => foo42nil