Skip to content

Commit d52792a

Browse files
committed
Comment out long time compiling script
1 parent 17ce830 commit d52792a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

docsrc/content/abstraction-monad.fsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -233,7 +233,7 @@ module CombineWriterWithResult =
233233

234234
// Catch and throw is generic over all monad transformers in F#+ so catch works in this example
235235
// because there is a Result in the stack. We use it here to consolidate Result's 'TError.
236-
236+
(*
237237
module CombineReaderWithWriterWithResult =
238238
239239
let divide5By : float -> Result<float, string> = function
@@ -262,7 +262,7 @@ module CombineReaderWithWriterWithResult =
262262
let run expr = ReaderT.run expr >> ResultT.run >> Writer.run
263263
264264
let (_, log) = run divide DateTime.UtcNow
265-
265+
*)
266266

267267
// Many popular F# libraries are in fact an instantiation of a specific monad combination.
268268
// The following example demonstrate how to code a mini-Suave lib in a few lines

0 commit comments

Comments
 (0)