(no commit message)
authorbarker <barker@web>
Mon, 13 Sep 2010 14:00:19 +0000 (10:00 -0400)
committerLambda Wiki <lambda@SERVER.PHILOSOPHY.FAS.NYU.EDU>
Mon, 13 Sep 2010 14:00:19 +0000 (10:00 -0400)
assignment1.mdwn

index d086850..d14f792 100644 (file)
@@ -93,7 +93,7 @@ Now we can write:
         (p get-first)   ; will evaluate to 10
         (p get-second)  ; will evaluate to 20
 
-If you're bothered by having the pair to the left and the function that operates on it come second, think about why it's being done this way: the pair is a package that takes a function for operating on its elements as an argument, and returns the result of operating on its elemens with that function. In other words, the pair is also a function.
+If you're bothered by having the pair to the left and the function that operates on it come second, think about why it's being done this way: the pair is a package that takes a function for operating on its elements as an argument, and returns the result of operating on its elemens with that function. In other words, the pair is also a function.  (Of course, in the untyped lambda calculus, absolutely *everything* is a function: functors, arguments, abstracts, redexes, values---everything.)
 
 If you like, you can disguise what's going on like this: