;; constantly returns a function which always returns the same value (map (constantly 9) [1 2 3]) user=> (9 9 9) (map (constantly (rand-int 100)) [:a :b :c]) user=> (43 43 43)
;; constantly returns a function which always returns the same value (map (constantly 9) [1 2 3]) user=> (9 9 9) (map (constantly (rand-int 100)) [:a :b :c]) user=> (43 43 43)
;; constantly returns a function which always returns the same value (map (constantly 9) [1 2 3]) user=> (9 9 9)
;; constantly is a function which always returns a constant (map (constantly 9) [1 2 3]) user=> (9 9 9)