> I think the current syntax is too close to current short closures

I agree.

I don't think we need a new keyword, I think the presence of `=>` in the 
function definition should indicate that scope is captured, like this:

```
function() => {
      // ...
}
```

To put it another way `fn() => foo;` would be a syntactically identical version 
of `function() => {return foo;}`

Reply via email to