I am trying clojurescript and find it takes a long time to compile a very simple clojurescript source file into js. I can't believe this.
time cljsc hello.cljs '{:optimizations :advanced}' > hello.js
real 1m27.324s
user 1m2.412s
sys 0m0.676s
The snippet is from Clojurescript's github quick start page:
(ns hello)
(defn ^:export greet [n]
(str "Hello " n))
Leaving out the :optimizations option, I still find it takes a long time:
time cljsc hello.cljs > hello.js
real 0m10.867s
user 0m22.301s
sys 0m0.412s
Is that normal ? Or how can I speed up that ?