Skip to content

Instantly share code, notes, and snippets.

@vgaltes
Created July 4, 2016 21:14
Show Gist options
  • Save vgaltes/4ad26d3232862407cb1d23f746bd87b6 to your computer and use it in GitHub Desktop.
Save vgaltes/4ad26d3232862407cb1d23f746bd87b6 to your computer and use it in GitHub Desktop.
type Character = {Name:string; Health : int; Level: int; Type: FighterType; Factions: string list}
type Thing = {Name: string; Health: int}
type Player =
| Character of Character
| Thing of Thing
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment