summary refs log tree commit diff stats
path: root/clojure/hello-world/src/hello_world.clj
diff options
context:
space:
mode:
authorAndinus <andinus@nand.sh>2021-09-05 16:36:40 +0530
committerAndinus <andinus@nand.sh>2021-09-05 16:36:40 +0530
commit38b4e6fa229e65eae10f8a06c81ef1a0802d45f5 (patch)
treecb94ab163b2f7607f38d01753d286189ddcda259 /clojure/hello-world/src/hello_world.clj
parente4fd875702b7be18cfc3eccdb10fb21a065ae5e1 (diff)
downloadexercism-38b4e6fa229e65eae10f8a06c81ef1a0802d45f5.tar.gz
Clojure: Add Hello World solution and Two Fer exercise
Diffstat (limited to 'clojure/hello-world/src/hello_world.clj')
-rw-r--r--clojure/hello-world/src/hello_world.clj4
1 files changed, 4 insertions, 0 deletions
diff --git a/clojure/hello-world/src/hello_world.clj b/clojure/hello-world/src/hello_world.clj
new file mode 100644
index 0000000..b81d18f
--- /dev/null
+++ b/clojure/hello-world/src/hello_world.clj
@@ -0,0 +1,4 @@
+(ns hello-world)
+
+(defn hello []
+  "Hello, World!")