#107
Simple closures
 

Difficulty:Easy
Topics:higher-order-functions math


Lexical scope and first-class functions are two of the most basic building blocks of a functional language like Clojure. When you combine the two together, you get something very powerful called lexical closures. With these, you can exercise a great deal of control over the lifetime of your local bindings, saving their values for use later, long after the code you're running now has finished. It can be Hard to follow in the abstract, so let's build a simple closure. Given a positive integer n, return a function (f x) which computes xn. Observe that the effect of this is to preserve the value of n for use outside the scope in which it is defined.
test not run
(= 256 ((__ 2) 16), ((__ 8) 2))
test not run
(= [1 8 27 64] (map (__ 3) [1 2 3 4]))
test not run
(= [1 2 4 8 16] (map #((__ %) 2) [0 1 2 3 4]))


Code which fills in the blank: