This page is not created by, affiliated with, or supported by Slack Technologies, Inc.
(let [[a b]
(list "a" "b")
foo "asdf"]
(string/join "_" '(a b foo)))
=> “a_b_foo”
(let [[a b]
(list "a" "b")
foo "asdf"]
(string/join "_" (list a b foo)))
=> “a_b_asdf”
why is that?@munichlinux a quote tells Clojure not to evaluate anything in the form that follows
@lilactown ah, I got that wrong