From ac9dca9445dd794a3cbda9cfa80d48cb521a96d7 Mon Sep 17 00:00:00 2001 From: Chris Barker Date: Mon, 25 Oct 2010 15:10:17 -0400 Subject: [PATCH 1/1] added proto-monad --- assignment5.mdwn | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/assignment5.mdwn b/assignment5.mdwn index f6ae94b0..4a4e06d2 100644 --- a/assignment5.mdwn +++ b/assignment5.mdwn @@ -185,7 +185,7 @@ binary trees working in OCAML. Consider the following list type: - datatype ’a list = Nil | Cons of ’a * ’a list + type ’a list = Nil | Cons of ’a * ’a list We can encode τ lists, lists of elements of type τ as follows: -- 2.11.0