We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
(In uncurried mode, which is now always true).
This
!(arg => doStuffWith(arg))
formats to
!arg => doStuffWith(arg)
which does not parse.
Also, this:
let x = (x => print(x)).x
let x = x => print(x).x