Answers for "functions call functions"

0

call function in clojure

(defn square [x]
    (* x x))

(println (square 2))
; 4

(println (square 3))
; 9
Posted by: Guest on November-16-2020

Browse Popular Code Answers by Language