From: Jim Date: Sun, 1 Feb 2015 07:53:49 +0000 (-0500) Subject: update week1 notes X-Git-Url: http://lambda.jimpryor.net/git/gitweb.cgi?p=lambda.git;a=commitdiff_plain;h=8a3b979f1f663fae452ba677e394acd329ee2e2d update week1 notes --- diff --git a/week1.mdwn b/week1.mdwn index 3984eec3..1765c6b1 100644 --- a/week1.mdwn +++ b/week1.mdwn @@ -560,7 +560,7 @@ It may be helpful to contrast these recursive-style definitons to the way one wo   `empty? match` λ `xs.` *this definition left as an exercise*;   `tail match` λ `xs.` *this definition left as an exercise*;   `length match` λ `xs. let` -                                             `n := 0;` +                                         `n := 0;`               `while not (empty? xs) do`                 `n := n + 1;`                 `xs := tail xs`