|
|
|
|
|
by dvt
2022 days ago
|
|
> K takes 3 values, and returns the 1st, 3rd, and (2nd applied to 3rd) Everything applies: so, e.g., when we see something like ABC, we actually omit the parentheses; if we include them, we have (((A)B)C). This can be confusing because applications associate to the left, but lambdas associate to the right[1]. So 11 13 (12 13) is actually (((11)13)((12)13)). In roundabout English, 11 applies to 13 which then applies to the result of 12 applies to 13. [1] https://www.cs.cmu.edu/~anupamg/251-notes/lambda_calculus.pd... |
|