From 73dbb6a826f852b98672a36733be3d33b7cb00f6 Mon Sep 17 00:00:00 2001 From: jim Date: Wed, 8 Apr 2015 00:00:35 -0400 Subject: [PATCH] markup --- topics/week9_monad_transformers.mdwn | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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]]