Hacker Newsnew | past | comments | ask | show | jobs | submitlogin

> let A = (x) => (y) => (z) => x(z)(y((w) => z))

What is w?



The name for a dummy argument that is not used. We could also write A as \x y z => x z (y (K z)), since K is the const function that ignores its second argument and returns the first.




Guidelines | FAQ | Lists | API | Security | Legal | Apply to YC | Contact

Search: