Skip to content

Instantly share code, notes, and snippets.

@vgaltes
Created May 4, 2015 13:39
Show Gist options
  • Save vgaltes/ad0eaab4d86ce2677b86 to your computer and use it in GitHub Desktop.
Save vgaltes/ad0eaab4d86ce2677b86 to your computer and use it in GitHub Desktop.
FSharp Bank Kata - Option type
type Option<'a> =
| Some of 'a
| None
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment