Spoiler alert, this is problem 5 of Project Euler. I am attempting to learn Clojure and solved problem 5, but it is a couple orders of magnitude slower (1515 ms in Java versus 169932 ms in Clojure). I even tried using type hinting, unchecked math operations, and inlining functions all for naught. Why is my Clojure code so much slower? Clojure code: (set! *unchecked-math* true) (defn divides? [^lon

