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.
19 lines
313 B
Clojure
19 lines
313 B
Clojure
(ns milkwood-clj.core
|
|
(require
|
|
[milkwood-clj.analyse :as analyse]
|
|
[milkwood-clj.synthesise :as sythesise]
|
|
[clojure.set :as set])
|
|
(:gen-class))
|
|
|
|
|
|
(defn -main
|
|
"I don't do a whole lot ... yet."
|
|
[& args]
|
|
(println "Hello, World!"))
|
|
|
|
|
|
;;;; read side - also probably a separate file
|
|
|
|
|
|
;;;; write side
|