(no commit message)
authorbarker <barker@web>
Tue, 21 Sep 2010 00:49:57 +0000 (20:49 -0400)
committerLambda Wiki <lambda@SERVER.PHILOSOPHY.FAS.NYU.EDU>
Tue, 21 Sep 2010 00:49:57 +0000 (20:49 -0400)
lambda_evaluator.mdwn

index 7228fca..6196127 100644 (file)
@@ -8,7 +8,7 @@ It will allow you to write lambda terms and evaluate them, with full ability to
 *Lambda terms*: lambda terms are written with a backslash, thus: `((\x (\y x)) z)`.  
 If you click "Reduce", the system will produce a lambda term that is guaranteed to be reduction equivalent (`<~~>`) with the original term.  So `((\x (\y x)) z)` reduces to (a lambda term equivalent to) `(\y z)`.
 
 *Lambda terms*: lambda terms are written with a backslash, thus: `((\x (\y x)) z)`.  
 If you click "Reduce", the system will produce a lambda term that is guaranteed to be reduction equivalent (`<~~>`) with the original term.  So `((\x (\y x)) z)` reduces to (a lambda term equivalent to) `(\y z)`.
 
-*Let*: in order to make building a more elaborate system easier, it is possible to define values using `let`.
+*Let*: in order to make building a more elaborate set of terms easier, it is possible to define values using `let`.
 In this toy system, `let`s should only be used at the beginning of a file.  If we have, for intance,
 
     let true = (\x (\y x)) in
 In this toy system, `let`s should only be used at the beginning of a file.  If we have, for intance,
 
     let true = (\x (\y x)) in