Created
October 8, 2014 20:26
-
-
Save Rickasaurus/b5462f6cbd42126eb411 to your computer and use it in GitHub Desktop.
DUs
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
type MyDU = | |
| CaseOne of int | |
| CaseTwo of int | |
let c1 = CaseOne 1 | |
let c2 = CaseTwo 2 | |
let matchit mdu = | |
match mdu with | |
| CaseOne v | CaseTwo v -> v |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment