Skip to content

Instantly share code, notes, and snippets.

Created November 12, 2016 19:28
Show Gist options
  • Save anonymous/30a0fbc38dfd517c5b5f12af057ba41b to your computer and use it in GitHub Desktop.
Save anonymous/30a0fbc38dfd517c5b5f12af057ba41b to your computer and use it in GitHub Desktop.
type line = {
description : string;
cost : float
}
type invoice = {
customer : string;
create_date : Time.t;
lines : (* list of lines *);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment