The following code:
(require '[clojure.set])
(println (clojure.set/difference '("a" "b" "c" "d") '("c" "d" "e" "f")))
gives me the following error:
java.lang.ClassCastException: clojure.lang.PersistentList (repl-1:47)
I don't understand what I'm doing wrong. Shouldn't this print out ("a" "b")?