which do you prefer to join a vector of data into a string separated by commas?
boot.user=> (clojure.string/join "," [1 2 3 4] )
"1,2,3,4"
boot.user=> (apply str (interpose "," [1 2 3 4]))
"1,2,3,4"
or is there a better way you can think of
join
It’s clearer and simpler