Skip to content

Instantly share code, notes, and snippets.

@jasondown
Created January 24, 2019 03:09
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jasondown/e706f4e9a43606eaa4a19ef39f43a488 to your computer and use it in GitHub Desktop.
Save jasondown/e706f4e9a43606eaa4a19ef39f43a488 to your computer and use it in GitHub Desktop.
type UndiagnosedSampleData =
{ Id : Id
CarriedBy : Player
Rank : Rank }
static member Create (token : Token) =
{ Id = (int <| token.[0])
CarriedBy = Player.Create (int <| token.[1])
Rank = (int <| token.[2])
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment