@trinsec #Clojure, which has two syntax for lambdas. The shortest is `#(fun-call % %2)`, which is what the post warns against. More readable is `(fn liitle-known-optional-name [nice-arg-name] stuff-done)`. As she points out, using that little-known-optional-name is really helpful in stack trace debugging. Plus, it's great for readability.