#247
functions-1
 

Difficulty:Basic
Topics:functions


Functions are usually defined before they are used
test not run
(let [multiply-by-ten (fn [n] (* 10 n))]
      (= __ (multiply-by-ten 2)))


Code which fills in the blank: