shadow-cljs icon indicating copy to clipboard operation
shadow-cljs copied to clipboard

ClojureScript compilation made easy

Results 91 shadow-cljs issues
Sort by recently updated
recently updated
newest added

The following code gives the printout `x: 2` Expected printout `x: 1` ```clojure (ns test) (defn run-defonce [v] (defonce x v)) (run-defonce 1) (run-defonce 2) (println "x: " x) ```...