Created
July 4, 2016 21:14
-
-
Save vgaltes/4ad26d3232862407cb1d23f746bd87b6 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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