Skip to content

Commit

Permalink
Comment out code due to possible regression
Browse files Browse the repository at this point in the history
  • Loading branch information
gusty authored Feb 2, 2025
1 parent 35f2ffe commit acfb46e
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/FSharpPlus.Docs/Samples/Learn You a Haskell.fsx
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,8 @@ let res15 = (+) <!> (ZipList <| seq { 1..3 }) <*> (ZipList <| Seq.init 3 (fun _
let res16 = (fun x -> [x]) <!> (Some 4) // Some [4]
let res17 = lift2 (fun x xs -> x::xs) (Some 3) (Some [4]) // [3; 4]

let res18 = List.sequence [Some 3; Some 2; Some 1] // Some [3; 2; 1]
// Possible F# regression
// let res18 = List.sequence [Some 3; Some 2; Some 1] // Some [3; 2; 1]


(* --------------------------------------------------
Expand Down

0 comments on commit acfb46e

Please sign in to comment.