Skip to content

Instantly share code, notes, and snippets.

@grapswiz
Created January 31, 2011 06:17
Show Gist options
  • Save grapswiz/803706 to your computer and use it in GitHub Desktop.
Save grapswiz/803706 to your computer and use it in GitHub Desktop.
type book_t = {
title: string;
author: string;
publisher: string;
price: int;
isbn: string;
}
let book1 = {title = "head first java"; author = "Kephy"; publisher = "Oreilly"; price = 4800; isbn = "4-87311-279-6"}
let book2 = {title = "angougijutsunyuumon"; author = "Yuhki Hiroshi"; publisher = "Softbank"; price = 3000; isbn = "978-4-7973-5099-9"}
let book3 = {title = "hajimetenoPerl"; author = "Rankal"; publisher = "Oreilly"; price = 3000; isbn = "978-4-87311-427-9"}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment