FunctinoScript icon indicating copy to clipboard operation
FunctinoScript copied to clipboard

Support () =< {} arrow functions

Open kevbot-git opened this issue 4 years ago • 0 comments

I've never understood why the arrows in arrow function signatures have to go left-to-right. It's 2021 – that arrow should be able to go in any direction it wants to go in life!

Expected syntax:

let func = () => { console.log('the functino has run'); };

Proposed syntax:

let func = () =< { console.log('the functino has run'); };

kevbot-git avatar Nov 17 '21 22:11 kevbot-git