A collection of coding snippets, tips, hints and random thoughts.
> (apply (fn [x y] (+ x y)) '(1 1)) 2
> (apply #(+ %1 %2) '(1 1)) 2
No comments:
Post a Comment