> I used lein to create a new project.  Here is my project.clj file:
>
> (defproject SUDOKU_CLOJURE "0.01"
>  :description "My superduper SUDOKU solver."
>  :dependencies [[org.clojure/clojure "1.3.0"]
>                 [org.clojure/core.logic "0.6.5"]])
>
>
> After running "lein deps" I then run "lein repl" and then try to run
> the commands needed to try work with core.logic, but I keep getting
> the following error.
>
>
> REPL started; server listening on localhost port 19922
> user=> (refer '[clojure.core :exclude [==]])
> ClassCastException clojure.lang.PersistentVector cannot be cast to
> clojure.lang.Symbol  clojure.core/find-ns (core.clj:3657)
>
>
> Can anyone tell me what I am doing wrong?

Try creating a new ns -

(ns sudoku
  (:refer-clojure :exclude [==]))

Regards,
BG
-- 
Baishampayan Ghose
b.ghose at gmail.com

-- 
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
Note that posts from new members are moderated - please be patient with your 
first post.
To unsubscribe from this group, send email to
clojure+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/clojure?hl=en

Reply via email to