aboutsummaryrefslogtreecommitdiff
path: root/project.clj
diff options
context:
space:
mode:
authorEduardo Julian2014-11-25 14:43:44 -0400
committerEduardo Julian2014-11-25 14:43:44 -0400
commit5bf50ef978eb88e2e61c40f3bb0fea523115e770 (patch)
tree4651d17fb27e5d04498547456ed1d216c083ca1c /project.clj
+ Can lex basic tokens.
+ Can parse basic syntax. + Can eval integer multiplication.
Diffstat (limited to '')
-rw-r--r--project.clj7
1 files changed, 7 insertions, 0 deletions
diff --git a/project.clj b/project.clj
new file mode 100644
index 000000000..6f07b5b15
--- /dev/null
+++ b/project.clj
@@ -0,0 +1,7 @@
+(defproject lang "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.6.0"]
+ [org.clojure/core.match "0.2.1"]])