Created
August 23, 2010 18:27
-
-
Save dgfitch/546019 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(* Sample F# active pattern for comparison *) | |
let (|LessThan|_|) x y = if y <= x then Some() else None | |
match 4 with | |
| LessThan 2 -> "uhh something is wrong" | |
| _ -> "yay math" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment