Jindřich Ivánekjindraivanek.hashnode.dev·Jan 18, 2024F# tips weekly #2: Single case pattern matchEvery F# programmer is likely familiar with pattern matching using the match keyword, as illustrated below: match x with | Some 0 -> "Zero" | Some n when n > 0 -> "Positive" | Some n when n < 0 -> "Negative" | None -> "Unknown" However, a less well-...4 likes·584 readsF# tips weekly#fsharpAdd a thoughtful comment2 commentsTop commentsChristian Steinert·Jan 20, 2024Jan 20, 2024Great series. Looking forward to more! 1·Reply·1 replyHide repliesJindřich IvánekAuthor·Jan 20, 2024Author·Jan 20, 2024Thanks! ·Reply