Skip to content

Instantly share code, notes, and snippets.

@igorkulman
Created June 20, 2013 11:37
Show Gist options
  • Save igorkulman/5822042 to your computer and use it in GitHub Desktop.
Save igorkulman/5822042 to your computer and use it in GitHub Desktop.
type Severity =
| Debug
| Information
| Error
with
member this.toString() =
match this with
| Debug -> "Debug"
| Information -> "Information"
| Error -> "Error"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment