X-Git-Url: http://lambda.jimpryor.net/git/gitweb.cgi?p=lambda.git;a=blobdiff_plain;f=lambda_evaluator.mdwn;h=c9e21644124be4c830b25d8c136b62e1138878e0;hp=4a5b9dc0ec39a17f14cf4c564148b40acc9252e5;hb=7369cbe617f9b283dc9a585858dd1085ff7266f8;hpb=3d53f3d6c3e6aba63a591446fa57b8f686f30ad4 diff --git a/lambda_evaluator.mdwn b/lambda_evaluator.mdwn index 4a5b9dc0..c9e21644 100644 --- a/lambda_evaluator.mdwn +++ b/lambda_evaluator.mdwn @@ -19,7 +19,7 @@ Blank lines are fine. *Abbreviations*: In an earlier version, you couldn't use abbreviations. `\x y. y x x` had to be written `(\x (\y ((y x) x)))`. We've upgraded the parser though, so now it should be able to understand any lambda term that you can. -*Constants*: The combinators `S`, `K`, `I`, `C`, `B`, `W`, and `T` are pre-defined to their standard values. Also, integers will automatically be converted to Church numerals. (`0` is `\s z. z`, `1` is `\s z. s z`, and so on.) +*Constants*: The combinators `S`, `K`, `I`, `C`, `B`, `W`, `T`, `M` (aka ω) and `L` are pre-defined to their standard values. Also, integers will automatically be converted to Church numerals. (`0` is `\s z. z`, `1` is `\s z. s z`, and so on.)