Marius Gundersen (2013-12-12T11:56:47.000Z)
forbes at lindesay.co.uk (2013-12-16T14:34:27.278Z)
Couldn't a slight variation be used for arrow functions, rather than adding yet another character in front or behind it? For example, using `->` or `~>` (unless they have been reserved for something in ES7): ```js var arrowFunction = (a, b) => a+b; var generator = (a, b) -> yield a; yield b; var async = (a, b) ~> (await a) + (await b); ```
forbes at lindesay.co.uk (2013-12-16T14:33:59.179Z)
Couldn't a slight variation be used for arrow functions, rather than adding yet another character in front or behind it? For example, using -> or ~> (unless they have been reserved for something in ES7): ```js var arrowFunction = (a, b) => a+b; var generator = (a, b) -> yield a; yield b; var async = (a, b) ~> (await a) + (await b); ```