tweaked week3
authorJim Pryor <profjim@jimpryor.net>
Sat, 18 Sep 2010 21:40:39 +0000 (17:40 -0400)
committerJim Pryor <profjim@jimpryor.net>
Sat, 18 Sep 2010 21:40:39 +0000 (17:40 -0400)
Signed-off-by: Jim Pryor <profjim@jimpryor.net>
week3.mdwn

index 1f1b632..f5f075a 100644 (file)
@@ -2,8 +2,9 @@
 
 How could we compute the length of a list? Without worrying yet about what lambda-calculus implementation we're using for the list, the basic idea would be to define this recursively:
 
 
 How could we compute the length of a list? Without worrying yet about what lambda-calculus implementation we're using for the list, the basic idea would be to define this recursively:
 
-       the empty list has length 0
-       any non-empty list has length 1 + (the length of its tail)
+>      the empty list has length 0
+
+>      any non-empty list has length 1 + (the length of its tail)
 
 In OCaml, you'd define that like this:
 
 
 In OCaml, you'd define that like this: