Skip to main content

You are not logged in. Your edit will be placed in a queue until it is peer reviewed.

We welcome edits that make the post easier to understand and more valuable for readers. Because community members review edits, please try to make the post substantially better than how you found it, for example, by fixing grammar or adding additional resources and hyperlinks.

1
  • As to the let \x -> (\y->x+y) statement - the let statement is used to give names to things. In its simplest form, the statement looks like let name = expression. And from that point you use name each time you want to refer to expression. In your example, \x -> (\y->x+y) is an expression (a value of function type). So, your whole statement has the form let expression, no names bound. It has no point such way. Let expression what? Commented Mar 6, 2014 at 12:46