update week1 notes
authorJim <jim.pryor@nyu.edu>
Sun, 1 Feb 2015 02:49:26 +0000 (21:49 -0500)
committerJim <jim.pryor@nyu.edu>
Sun, 1 Feb 2015 02:49:26 +0000 (21:49 -0500)
week1.mdwn

index c75da69..4381ebe 100644 (file)
@@ -134,11 +134,11 @@ If we restricted ourselves to only that usage of &lambda;-expressions, that is w
 
 However, it's tempting to help ourselves to the notion (at least partly) *unapplied* &lambda;-expressions, too. If I can make sense of what:
 
-    (&lambda; x. x + 1) 5
+`(`&lambda; `x. x + 1) 5`
 
 means, then I can make sense of what:
 
-    (&lambda; x. x + 1)
+`(`&lambda; `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.