From: Jim Date: Sun, 1 Feb 2015 02:49:26 +0000 (-0500) Subject: update week1 notes X-Git-Url: http://lambda.jimpryor.net/git/gitweb.cgi?p=lambda.git;a=commitdiff_plain;h=c16131bf83b1a3364db5003362b74c36e4cf48cc update week1 notes --- diff --git a/week1.mdwn b/week1.mdwn index c75da692..4381ebed 100644 --- a/week1.mdwn +++ b/week1.mdwn @@ -134,11 +134,11 @@ If we restricted ourselves to only that usage of λ-expressions, that is w However, it's tempting to help ourselves to the notion (at least partly) *unapplied* λ-expressions, too. If I can make sense of what: - (λ x. x + 1) 5 +`(`λ `x. x + 1) 5` means, then I can make sense of what: - (λ x. x + 1) +`(`λ `x. x + 1)` means, too. It's just *the function* that waits for an argument and then returns the result of `x + 1` with `x` bound to that argument.