Logo

Programming-Idioms

History of Idiom 53 > diff from v33 to v34

Edit summary for version 34 by :
New Clojure implementation by user [pgon101a]

Version 33

2016-02-17, 09:44:37

Version 34

2016-02-17, 22:56:24

Idiom #53 Join a list of strings

Concatenate elements of string list x joined by the separator ", " to create a single string y.

Idiom #53 Join a list of strings

Concatenate elements of string list x joined by the separator ", " to create a single string y.

Code
(clojure.string/join "," '("abc" "def" "ghi") )