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