(ns foo.core) | |
(ns cljs.user) | |
(defn slurp | |
"Slurps a file" | |
[filename] | |
(or (js/PLANCK_SLURP_FN filename) | |
(throw (js/Error. filename)))) | |
(ns cljs.user (:require foo.core)) | |
(foo.core/add-five "3") |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment