Y
Hacker News
new
|
ask
|
show
|
jobs
by
Smaug123
83 days ago
This is essentially how Mathematica does it: the sugar `Foo[x,#,z]&` is semantically the same as `Function[{y}, Foo[x,y,z]]`. The `&` syntax essentially controls what hole belongs where.