#299
creating-functions-4
 

Difficulty:Basic
Topics:functions


Functions can join forces as one 'composed' function
test not run
(= 25 (let [square (fn [x] (* x x))
                inc-and-square (comp square inc)]
            (inc-and-square __)))


Code which fills in the blank: