Skip to content

Instantly share code, notes, and snippets.

@Rickasaurus
Created October 8, 2014 20:26
Show Gist options
  • Save Rickasaurus/b5462f6cbd42126eb411 to your computer and use it in GitHub Desktop.
Save Rickasaurus/b5462f6cbd42126eb411 to your computer and use it in GitHub Desktop.
DUs
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