cfunction
src/core/corelib.c on line 329, column 1
(string & xs)
Creates a string 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 string.
(string ;(range 12)) # => "01234567891011"
(string "hello" nil true 42 :bar) # => "helloniltrue42bar"
(string :a :b :c) # => "abc"
(string "hello " "world") # => "hello world"