Skip to content

Instantly share code, notes, and snippets.

@vgaltes
Created December 19, 2015 17:00
Show Gist options
  • Save vgaltes/90748124970e5f17159b to your computer and use it in GitHub Desktop.
Save vgaltes/90748124970e5f17159b to your computer and use it in GitHub Desktop.
Types from previous article
type CommitInfo = {Hash : string; Author : string; TimeStamp : DateTime; Message : string}
type CommittedFile = {LinesAdded: int option; LinesDeleted: int option; FileName: string}
type Commit = {CommitInfo: CommitInfo; Files: CommittedFile[]}
val totalCommits : Commit []
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment