A compilation error like "Foo cannot be cast to Bar" usually means you have a syntax error -- a Foo where you should have a Bar. In this case, you have a Vector where the compiler is expecting a Named thing, such as a Keyword or Symbol.
Check the syntax of your source files and project.clj carefully. Oh, and FYI, Clojure is never interpreted. SLIME just invokes the compiler on individual definitions. -Stuart Sierra clojure.com -- You received this message because you are subscribed to the Google Groups "Clojure" group. To post to this group, send email to [email protected] Note that posts from new members are moderated - please be patient with your first post. To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/clojure?hl=en
