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