From b35732e3e34bb499d0b7775b81632d40d7e3876e Mon Sep 17 00:00:00 2001 From: jim Date: Tue, 7 Apr 2015 23:59:40 -0400 Subject: [PATCH] now ++ is working in wrappers --- topics/week9_monad_transformers.mdwn | 17 +++++++---------- 1 file changed, 7 insertions(+), 10 deletions(-) diff --git a/topics/week9_monad_transformers.mdwn b/topics/week9_monad_transformers.mdwn index ff47d06a..6d8b5b74 100644 --- a/topics/week9_monad_transformers.mdwn +++ b/topics/week9_monad_transformers.mdwn @@ -151,31 +151,28 @@ When Option is on the inside, on the other hand, as in SO, failure means the who Exception: Failure "bye". --> - + # LL.(run(mid 1 ++ mid 2 >>= fun x -> hoist Monad.List.(mid x ++ mid (10*x) )));; + - : int LL.result = \[[1; 2]; [1; 20]; [10; 2]; [10; 20]]