File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff 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+ (*
236236module 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
You can’t perform that action at this time.
0 commit comments