Guest User

Untitled

a guest
Jun 17th, 2018
91
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.15 KB | None | 0 0
  1. (let [trush (fn [val & funcs] ((apply comp (reverse funcs)) val))
  2. custs [1 2 3 4 5 6 7 8 9]]
  3. (trush custs #(nthnext % 3) #(take 4 %)))
  4.  
  5. (4 5 6 7)
Add Comment
Please, Sign In to add comment