From d52792adb619bfbc04c4c1ca0ad318aa140bce81 Mon Sep 17 00:00:00 2001 From: Gusty <1261319+gusty@users.noreply.github.com> Date: Sat, 9 Jul 2022 23:29:27 +0200 Subject: [PATCH] Comment out long time compiling script --- docsrc/content/abstraction-monad.fsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docsrc/content/abstraction-monad.fsx b/docsrc/content/abstraction-monad.fsx index 6fcdedf41..1e5aba513 100644 --- a/docsrc/content/abstraction-monad.fsx +++ b/docsrc/content/abstraction-monad.fsx @@ -233,7 +233,7 @@ module CombineWriterWithResult = // Catch and throw is generic over all monad transformers in F#+ so catch works in this example // because there is a Result in the stack. We use it here to consolidate Result's 'TError. - +(* module CombineReaderWithWriterWithResult = let divide5By : float -> Result = function @@ -262,7 +262,7 @@ module CombineReaderWithWriterWithResult = let run expr = ReaderT.run expr >> ResultT.run >> Writer.run let (_, log) = run divide DateTime.UtcNow - +*) // Many popular F# libraries are in fact an instantiation of a specific monad combination. // The following example demonstrate how to code a mini-Suave lib in a few lines