X-Git-Url: http://lambda.jimpryor.net/git/gitweb.cgi?p=lambda.git;a=blobdiff_plain;f=week1.mdwn;h=fb6272e7d4d0da21bcd58c2def5473b554df0696;hp=a419c877e5a96a5f1e91ef3b114d48aad37d1a14;hb=fa3cea310b3fe8216e13e4f9a5af77e3df87e264;hpb=c6aa6ab0a05bdf464373ee31cb8cd93285079ca7 diff --git a/week1.mdwn b/week1.mdwn index a419c877..fb6272e7 100644 --- a/week1.mdwn +++ b/week1.mdwn @@ -560,10 +560,10 @@ 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;` -              `while not (empty? xs) do` -                `n := n + 1;` -                `xs := tail xs` -              `end` -            `in n` +                                         `n := 0;` +                                         `while not (empty? xs) do` +                                           `n := n + 1;` +                                           `xs := tail xs` +                                         `end` +                                       `in n`