On Tuesday, 12 October 2021 at 03:17:08 UTC, SealabJaster wrote:
>
> `abc => { return 123; }` should not be returning a function
> that returns a function.
>
I agree with this so much, like why couldn't it have been made so
you had to be explicit if you wanted to return a function? Like:
`abc => &{ return 123; }`