merge and add clojure

This commit is contained in:
Brian Seymour 2021-03-12 13:27:06 -06:00
parent fca3488743
commit ed0a5c4f78
5 changed files with 33 additions and 0 deletions

5
lxc/tests/clojure.clj Normal file
View file

@ -0,0 +1,5 @@
(ns clojure.examples.hello
(:gen-class))
(defn hello-world []
(println "good"))
(hello-world)