block literal
Expression\ [<parameters-list>] -> <expression>
Block expressions are anonymous functions that return a value (the right hand side expression).
<div _="on click setTimeout(\->console.log('called!'), 1000)">
Log 'called!' in a second
</div>