From 9c56b9263261ff06ac2b4c941f99caa012cc7b69 Mon Sep 17 00:00:00 2001 From: Dmitriy Pleshevskiy Date: Fri, 29 Oct 2021 14:27:30 +0300 Subject: [PATCH] feat(clojure/fund): add hello world --- clojure/fundament/1_hello_word.clj | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 clojure/fundament/1_hello_word.clj diff --git a/clojure/fundament/1_hello_word.clj b/clojure/fundament/1_hello_word.clj new file mode 100644 index 0000000..93de2f0 --- /dev/null +++ b/clojure/fundament/1_hello_word.clj @@ -0,0 +1,5 @@ +(ns hello-world) + +;; name params body +;; ----- ------ -------------- +(defn greet [ ] "hello world!") \ No newline at end of file