X-Git-Url: http://lambda.jimpryor.net/git/gitweb.cgi?p=lambda.git;a=blobdiff_plain;f=week1.mdwn;h=3669c334d35bd0a45d4acceff8efe19005a52b1d;hp=bfcf91d728463effd6ba5509d91906a79e56097d;hb=4678f0a49215b751a65d490012ae241208d3ec40;hpb=d5523cc6cf13375f7b1da8ef3f4a10b7ed422891 diff --git a/week1.mdwn b/week1.mdwn index bfcf91d7..3669c334 100644 --- a/week1.mdwn +++ b/week1.mdwn @@ -351,6 +351,7 @@ The following site may be useful; it lets you run a Scheme interpreter inside yo * [Try Scheme in your web browser](http://tryscheme.sourceforge.net/) +  1. Function application and parentheses @@ -396,7 +397,7 @@ The following site may be useful; it lets you run a Scheme interpreter inside yo (let ((two 2)) (+ three two))) -Most of the parentheses in this construction *aren't* playing the role of applying a function to some arguments---only the ones in `(+ three two)` are doing that. + Most of the parentheses in this construction *aren't* playing the role of applying a function to some arguments---only the ones in `(+ three two)` are doing that. In OCaml: