Created
September 4, 2015 07:48
-
-
Save mfirry/d85cd9d759a533845945 to your computer and use it in GitHub Desktop.
Basic :require in Clojure
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(ns test123.core | |
(:require [test123.limo :as l])) | |
(defn -main [] (l/foo "Marco")) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(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