fasterthanlime / shin

:warning: (def shin (dissoc clojurescript :jvm :google_closure)) (deprecated)
MIT License
35 stars 1 forks source link

Fix recur in destructuring functions #56

Closed fasterthanlime closed 9 years ago

fasterthanlime commented 9 years ago

The following doesn't work:

(defn [x y & xs]
  (if something
    (recur y (first xs) (rest xs))))

But it should :)