Skip to content

Commit

Permalink
Comment out long time compiling script
Browse files Browse the repository at this point in the history
  • Loading branch information
gusty committed Jul 9, 2022
1 parent 17ce830 commit d52792a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docsrc/content/abstraction-monad.fsx
Original file line number Diff line number Diff line change
Expand Up @@ -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<float, string> = function
Expand Down Expand Up @@ -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
Expand Down

0 comments on commit d52792a

Please sign in to comment.