X-Git-Url: http://lambda.jimpryor.net/git/gitweb.cgi?p=lambda.git;a=blobdiff_plain;f=week1.mdwn;h=3669c334d35bd0a45d4acceff8efe19005a52b1d;hp=21c918098c3d83d1c7f1e981d1324839a5f2f26e;hb=4678f0a49215b751a65d490012ae241208d3ec40;hpb=4675d2cd19a3e4f069cfdd009ca07281ab424b1d diff --git a/week1.mdwn b/week1.mdwn index 21c91809..3669c334 100644 --- a/week1.mdwn +++ b/week1.mdwn @@ -349,10 +349,9 @@ Here's how it looks to say the same thing in various of these languages. The following site may be useful; it lets you run a Scheme interpreter inside your web browser: - +* [Try Scheme in your web browser](http://tryscheme.sourceforge.net/) +  1. Function application and parentheses @@ -398,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: