Added a rough sketch of the specification and project structure.

This commit is contained in:
Simon Brooke 2025-10-31 11:37:27 +00:00
parent 8b7e37f30f
commit b9353eeb24
5 changed files with 79 additions and 1 deletions

8
project.clj Normal file
View file

@ -0,0 +1,8 @@
(defproject elboob "0.1.0-SNAPSHOT"
:description "FIXME: write description"
:url "http://example.com/FIXME"
:license {:name "EPL-2.0 OR GPL-2.0-or-later WITH Classpath-exception-2.0"
:url "https://www.eclipse.org/legal/epl-2.0/"}
:dependencies [[org.clojure/clojure "1.11.1"]]
:repl-options {:init-ns elboob.core}
:source-paths ["src/clj"])