diff options
author | William Carroll <wpcarro@gmail.com> | 2020-05-04T11·32+0100 |
---|---|---|
committer | William Carroll <wpcarro@gmail.com> | 2020-05-04T11·32+0100 |
commit | 066b1441b29df2d9616eabc8680e912e912cbb07 (patch) | |
tree | 906f1a4415a7eff50d26fce39f5c36e309de7c6a /boilerplate/clojure/src | |
parent | 7a7c29d46ce1503a57f7a81512d11960ca0f72c8 (diff) |
Support //boilerplate/clojure
While this is most likely incomplete or even erroneous, I'd like to start supporting Clojure in this repository.
Diffstat (limited to 'boilerplate/clojure/src')
-rw-r--r-- | boilerplate/clojure/src/main.clj | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/boilerplate/clojure/src/main.clj b/boilerplate/clojure/src/main.clj new file mode 100644 index 000000000000..f6b60dba404e --- /dev/null +++ b/boilerplate/clojure/src/main.clj @@ -0,0 +1,8 @@ +(ns ^{:doc "Top-level module." + :author "William Carroll"} + main) + +(declare main) + +(defn foo [a b] + (+ a b)) |