Arc Forum
new
|
comments
|
leaders
|
submit
login
1 point
by
greatness
6135 days ago |
link
|
parent
I was thinking more like this:
(def curry (f . args) (fn args2 (apply f (join args args2))))
which is pretty much the same thing except without it being a macro. I've found that with the [] syntax, currying doesn't really improve code brevity.