defining functions clojure
(defn saysomething " i dont want to talk to you" [name] (str "why is it so?" name)) #'my-clojureproject1.core/saysomething => (println (saysomething "anjana") => (defn saymorethings "what do you want to hear" [name] (str "life is a box of chocolates" name)) #'my-clojureproject1.core/saymorethings => (println (saymorethings "nirosha") ) life is a box of chocolatesnirosha nil