Guest User

Untitled

a guest
Jul 20th, 2018
79
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.12 KB | None | 0 0
  1. (defn f [x] (println x))
  2. (defn g [x] (f x))
  3.  
  4. (let [h (fn [x] (g x))]
  5. (binding [f (fn [x] (print (inc x)))]
  6. (h 5)))
  7.  
  8. ; 6
Add Comment
Please, Sign In to add comment