Skip to content

Instantly share code, notes, and snippets.

@vgaltes
Created May 10, 2015 13:47
Show Gist options
  • Save vgaltes/ea700e4c7f2334223d0a to your computer and use it in GitHub Desktop.
Save vgaltes/ea700e4c7f2334223d0a to your computer and use it in GitHub Desktop.
FSharp Pattern Matching
let (|Even|Odd|) input = if input % 2 = 0 then Even else Odd
let TestNumber input =
match input with
| Even -> printfn "%d is even" input
| Odd -> printfn "%d is odd" input
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment