Skip to content

Instantly share code, notes, and snippets.

@mfikes
Created July 24, 2015 13:39
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mfikes/49b46756a9a892471f4e to your computer and use it in GitHub Desktop.
Save mfikes/49b46756a9a892471f4e to your computer and use it in GitHub Desktop.
(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