utils; and rewritten the analyse stage in more idiomatic clojure. Analyse mostly working BUT out of stack exception on undermilkwood.txt, also isn't treating punctuation as tokens.
9 lines
383 B
Clojure
9 lines
383 B
Clojure
(defproject milkwood-clj "0.1.0-SNAPSHOT"
|
|
:description "Reimplementation of the Milkwood rule driven nonsense generator in Clojure"
|
|
:url "http://example.com/FIXME"
|
|
:license {:name "Eclipse Public License"
|
|
:url "http://www.eclipse.org/legal/epl-v10.html"}
|
|
:dependencies [[org.clojure/clojure "1.5.1"]]
|
|
:main milkwood-clj.core
|
|
:profiles {:uberjar {:aot :all}})
|