Arc Forumnew | comments | leaders | submitlogin
1 point by greatness 5930 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.