Skip to content

Commit 7b94fdb

Browse files
committed
Comment out long time compiling script
1 parent 7207b2b commit 7b94fdb

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

docsrc/content/abstraction-monad.fsx

+2-2
Original file line numberDiff line numberDiff line change
@@ -232,7 +232,7 @@ module CombineWriterWithResult =
232232

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

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

0 commit comments

Comments
 (0)