why use<p><pre><code> map (-> it.length > x), list
map (call \toUpperCase), 'haha'
</code></pre>
for functions with only one free variable?<p>IMHO it would be prettier to have something like scala's _<p><pre><code> map (_.length > x), list
map (_.toUpperCase), 'haha'
</code></pre>
i.e. automatically build a closure when _ is used eithout the need for additional anonymous function syntax