milkwood-clj/src/milkwood_clj/core.clj
Simon Brooke a2958cb851 Right, separated analyse and synthesise stages into their own files, also
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.
2013-11-08 10:20:47 +00:00

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