I have a piece of code like this:

(def ll ['a 'b 'c 'd])

(loop [e (first ll) f (rest ll)]
  (do
    (try
       (do
          (println e) ;; do sth with e which may throw an exception
          (recur (first f) (rest f)))
      (catch Exception _ (println "ex")))
    (println "something")
    (recur (first ll) f (rest ll))
))


as a result I've got a message:
java.lang.IllegalArgumentException: Mismatched argument count to
recur, expected: 0 args, got: 2

So, my question is how to catch exception and do something with them
and keep looping?

Does anyone know any solution/workaround of this problem?

Konrad

-- 
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