On Oct 14, 2008, at 5:24 PM, Paul Drummond wrote: > I want to use the zip-filter library so at the REPL I tried this: > > (require 'clojure.contrib.zip-filter :as zf) > > which failed with: > > java.lang.Exception: Unable to resolve symbol: zf in this context
The zf needs a quote as well as 'clojure.contrib.zip-filter (which is also a (quoted) symbol). Without the quote, Clojure is trying to evaluate zf to know what to pass as the last argument of require. Lists and symbols evaluate to something other than themselves. --Steve --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Clojure" group. To post to this group, send email to clojure@googlegroups.com 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 -~----------~----~----~----~------~----~------~--~---