Functions call functions code example
Example: call function in clojure
(defn square [x]
(* x x))
(println (square 2))
; 4
(println (square 3))
; 9
(defn square [x]
(* x x))
(println (square 2))
; 4
(println (square 3))
; 9