Guest User

Untitled

a guest
Sep 28th, 2011
210
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. (defn my-sad-map [f coll]
  2.   (when (seq coll)
  3.     (lazy-seq (cons (f (first coll)) (my-sad-map f (rest coll))))))
  4.  
  5.  
Advertisement
Add Comment
Please, Sign In to add comment