diff --git a/.gitignore b/.gitignore index 439c43a..f453efe 100644 --- a/.gitignore +++ b/.gitignore @@ -1,2 +1,4 @@ +bin lib +*.jar .DS_Store diff --git a/project.clj b/project.clj index b2e37a8..bc00fac 100644 --- a/project.clj +++ b/project.clj @@ -1,6 +1,6 @@ (defproject functional-koans "0.0.1" :description "The functional koans" - :script "path_to_enlightenment.clj" + :main "path_to_enlightenment" :dependencies [[org.clojure/clojure "1.1.0"] [org.clojure/clojure-contrib "1.0-SNAPSHOT"] [org.clojure/swank-clojure "1.0"] diff --git a/path_to_enlightenment.clj b/src/path_to_enlightenment.clj similarity index 100% rename from path_to_enlightenment.clj rename to src/path_to_enlightenment.clj