#14
Functions
 

Difficulty:Elementary
Topics:


Clojure has many different ways to create functions.
test not run
(= __ ((fn add-five [x] (+ x 5)) 3))
test not run
(= __ ((fn [x] (+ x 5)) 3))
test not run
(= __ (#(+ % 5) 3))
test not run
(= __ ((partial + 5) 3))


Code which fills in the blank: