Skip to content

Instantly share code, notes, and snippets.

@mfirry
Created September 4, 2015 07:48
Show Gist options
  • Save mfirry/d85cd9d759a533845945 to your computer and use it in GitHub Desktop.
Save mfirry/d85cd9d759a533845945 to your computer and use it in GitHub Desktop.
Basic :require in Clojure
(ns test123.core
(:require [test123.limo :as l]))
(defn -main [] (l/foo "Marco"))
(ns test123.limo)
(defn foo
"I don't do a whole lot."
[x]
(println x " Hello, World!"))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment