Skip to content

Instantly share code, notes, and snippets.

@dungpa
Created April 16, 2013 12:18
Show Gist options
  • Save dungpa/5395476 to your computer and use it in GitHub Desktop.
Save dungpa/5395476 to your computer and use it in GitHub Desktop.
type Direction =
| Up
| Down
| Left
| Right
with override this.ToString() =
match this with
| Up -> "Up"
| Down -> "Down"
| Left -> "Left"
| Right -> "Right"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment