It would be really cool to have syntax to curry functions built into the
languages. Something like...

```js
curry function add(a, b) {
    return a + b;
}

add(2)(3); // 5
```
_______________________________________________
es-discuss mailing list
[email protected]
https://mail.mozilla.org/listinfo/es-discuss

Reply via email to