From: jim Date: Wed, 8 Apr 2015 04:00:35 +0000 (-0400) Subject: markup X-Git-Url: http://lambda.jimpryor.net/git/gitweb.cgi?p=lambda.git;a=commitdiff_plain;h=73dbb6a826f852b98672a36733be3d33b7cb00f6 markup --- diff --git a/topics/week9_monad_transformers.mdwn b/topics/week9_monad_transformers.mdwn index 6d8b5b74..b0190430 100644 --- a/topics/week9_monad_transformers.mdwn +++ b/topics/week9_monad_transformers.mdwn @@ -172,7 +172,7 @@ This is fun. Notice the difference it makes whether the second `++` is native to # LL.(run(mid 1 ++ mid 2 >>= fun x -> mid x ++ mid (10*x) ));; - : int LL.result = \[[1; 10; 2; 20]] # 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]] + - : int LL.result = [[1; 2]; [1; 20]; [10; 2]; [10; 20]]