diff options
author | Andinus <andinus@nand.sh> | 2021-09-05 16:36:40 +0530 |
---|---|---|
committer | Andinus <andinus@nand.sh> | 2021-09-05 16:36:40 +0530 |
commit | 38b4e6fa229e65eae10f8a06c81ef1a0802d45f5 (patch) | |
tree | cb94ab163b2f7607f38d01753d286189ddcda259 /clojure/hello-world/src | |
parent | e4fd875702b7be18cfc3eccdb10fb21a065ae5e1 (diff) | |
download | exercism-38b4e6fa229e65eae10f8a06c81ef1a0802d45f5.tar.gz |
Clojure: Add Hello World solution and Two Fer exercise
Diffstat (limited to 'clojure/hello-world/src')
-rw-r--r-- | clojure/hello-world/src/hello_world.clj | 4 |
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!") |