Initial commit: It's sort-of beginning to work...

This commit is contained in:
Simon Brooke 2019-08-14 16:37:20 +01:00
commit 35a7d2ff62
13 changed files with 592 additions and 0 deletions

10
project.clj Normal file
View file

@ -0,0 +1,10 @@
(defproject beowulf "0.1.0-SNAPSHOT"
:description "An implementation of LISP 1.5 in Clojure"
:url "http://example.com/FIXME"
:license {:name "GPL-2.0-or-later"
:url "https://www.eclipse.org/legal/epl-2.0/"}
:dependencies [[org.clojure/clojure "1.10.0"]
[instaparse "1.4.10"]]
:main ^:skip-aot beowulf.core
:target-path "target/%s"
:profiles {:uberjar {:aot :all}})