Skip to content

Instantly share code, notes, and snippets.

@lasandell
Created February 8, 2014 02:31
Show Gist options
  • Save lasandell/8875780 to your computer and use it in GitHub Desktop.
Save lasandell/8875780 to your computer and use it in GitHub Desktop.
let (|Value|_|) value item =
if item = value
then Some()
else None
let x = 1
match [1] with
| [Value x] -> "match"
| _ -> "no match"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment