Skip to content

Instantly share code, notes, and snippets.

@miloshadzic
Created February 13, 2013 01:45
Show Gist options
  • Save miloshadzic/4838144 to your computer and use it in GitHub Desktop.
Save miloshadzic/4838144 to your computer and use it in GitHub Desktop.
Clojure string joining
user=> (clojure.string/join ["a" "b" "c" "d"])
"abcd"
user=> (clojure.string/join ", " ["a" "b" "c" "d"])
"a, b, c, d"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment