X-Git-Url: http://lambda.jimpryor.net/git/gitweb.cgi?p=lambda.git;a=blobdiff_plain;f=lambda_evaluator.mdwn;h=ffe1c9d589bcf8f0ea53b86cb5692ab4ba86622e;hp=a696537de5d30fcb7119588187fb1d67eb3de513;hb=f5940a5f1336b330235676932fcb70e038e75c8d;hpb=8a17989a3112b0bdecfaaf7855f6b41f8f033476 diff --git a/lambda_evaluator.mdwn b/lambda_evaluator.mdwn index a696537d..ffe1c9d5 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*, **NOT**: 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)))`. (As in Scheme or Racket.) *Comments*: anything following a semicolon to the end of the line is ignored. Blank lines are fine.