Skip to content

Instantly share code, notes, and snippets.

@thoferon
Created October 5, 2012 10:09
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 thoferon/3839051 to your computer and use it in GitHub Desktop.
Save thoferon/3839051 to your computer and use it in GitHub Desktop.
(defproject name-with-dashes "0.1.0-SNAPSHOT"
:description "FIXME: write description"
:url "http://example.com/FIXME"
:license {:name "Eclipse Public License"
:url "http://www.eclipse.org/legal/epl-v10.html"}
:dependencies [[org.clojure/clojure "1.4.0"]]
:main name-with-dashes.core)
(ns name-with-dashes.core
[:require [name-with-dashes.some-stuff :as ss]])
(defn -main [& args] (ss/hello))
(ns name-with-dashes.some-stuff)
(defn hello []
(println "Hello"))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment