Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

@stuartsierra
Last active April 2, 2020 13:12
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 stuartsierra/d9085d4059c6e32efdca91d9859dcfcf to your computer and use it in GitHub Desktop.
Save stuartsierra/d9085d4059c6e32efdca91d9859dcfcf to your computer and use it in GitHub Desktop.
Example Clojure Gist with multiple files
(ns one)
(defn example-function []
(println "Hello from example.one"))
(ns three)
(defn a-third-function []
(println "Hello from example.three"))
(ns two)
(defn another-function []
(println "Hello from example.two"))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment