Hi,

Am 01.02.2009 um 14:27 schrieb Jan Rychter:

(loop [[a b] [1 2]]
   (if (= a 2)
     true
     (recur [(+ a 1) (+ b 1)])))

1:1 user=> (loop [[a b] [1 2]]
             (if (= a 2)
               true
               (recur [(+ a 1) (+ b 1)])))
true

java.lang.NoClassDefFoundError: clojure/core$loop__4287$fn__4289 (NO_SOURCE_FILE:1)
   [Thrown class clojure.lang.Compiler$CompilerException]

My (free) interpretation of this error message:
Your clojure setup is broken. There was a class for loop generated,
which has the name clojure/core$loop__4287$fn__4289.  But now this
functions is referenced, but not found.

My suggestion is: Rebuild your clojure.jar and your problem
should go away.

(My 2 very personal ยข: "Blame yourself first" will solve >95%
of Clojure's "bugs" you encounter. This is not intended as an
offence, but as a very general remark to all the users including
- first and foremost - myself.)

Sincerely
Meikel


Attachment: smime.p7s
Description: S/MIME cryptographic signature

Reply via email to