From: barker Date: Tue, 21 Sep 2010 00:51:17 +0000 (-0400) Subject: (no commit message) X-Git-Url: http://lambda.jimpryor.net/git/gitweb.cgi?p=lambda.git;a=commitdiff_plain;h=904d62aef970037420a9f3e78d9ebc994e524063 --- diff --git a/lambda_evaluator.mdwn b/lambda_evaluator.mdwn index ffe1c9d5..31021dce 100644 --- a/lambda_evaluator.mdwn +++ b/lambda_evaluator.mdwn @@ -18,7 +18,7 @@ In this toy system, `let`s should only be used at the beginning of a file. If w the result is `yes`. Things to watch out for: the expression after the equal sign must have balanced parentheses, and the "in" is obligatory. If you violate these rules, the system will still produce a result, but it won't make much sense. -*Abbreviations*: No abbreviations work. So `\xy.yxx` must be written `(\x (\y ((y x) x)))`. (As in Scheme or Racket.) +*Abbreviations*: No abbreviations work. So `\xy.yxx` must be written `(\x (\y ((y x) x)))`. *Comments*: anything following a semicolon to the end of the line is ignored. Blank lines are fine.