The API Cheatsheet section on Lists seems to indicate that '() is a list constructor, just like (list), but I've found that in practice they're not exactly the same. For example, given:
(def foo "a")
(def bar "b")
(def zip "c")
The following statement:
(apply str '(foo bar zip))
produces the output "foobarzip", which I wouldn't expect.
But the supposedly equivalent:
(apply str (list foo bar zip))
produces "abc", as I'd expect.
What's going on here? If there's a "shorthand" for a list in Clojure (like {} for maps and [] for vectors), what is it?