This link came from reddit, and the blog mentions some fun but underlighted things in clojure. It is sort of funny that the second 'cool' thing the blog post mentions, it also mentions 'just like in arc'.
I quoted the relevant section of the blog here.
2. Unnamed arguments for short lambdas
Pretty straightforward:
(map #(+ % 4) '(1 2 3))
-> (5 6 7)
;; Multiple arguments.
(map #(* %1 %2) '(1 2 3) '(4 5 6))
-> (4 10 18)
This is roughly equivalent to Arc’s [+ _ 4] form, though allows for more than one argument. The standard lambda form is also similar to Arc’s:
(map (fn [x] (+ x 4)) '(1 2 3)
-> (5 6 7)
Note that this is currently bugged in Arc-F though. Will fix ^^.
The auto-gensyms thing looks cute. It might be possible to hack something like that, although it would require modifying the axiomatic quasiquote operator.