JanetDocsPlaygroundI'm feeling luckyGitHub sign in

string



    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.


3 examplesSign in to add an example
Loading...
(string ;(range 12)) # => "01234567891011"
jgartePlayground
(string "hello" nil true 42 :bar)  # => "helloniltrue42bar"
(string :a :b :c)  # => "abc"
cellularmitosisPlayground
(string "hello " "world") # => "hello world"
swlkrPlayground