I'll just copy/paste an example: ``` clojure (let [x (fn [y] 1)] (->> "ola" (x))) (letfn [(x [y] 1)] (->> "ola" (x))) ``` Is it clear?