Skip to content

Instantly share code, notes, and snippets.

@t0yv0
Created July 12, 2012 14:45
Show Gist options
  • Save t0yv0/3098571 to your computer and use it in GitHub Desktop.
Save t0yv0/3098571 to your computer and use it in GitHub Desktop.
type A = {aval:int;b:B}
and B = {bval:int;a:A}
let rec a : A = { aval = 0; b = b }
and b : B = { bval = 1; a = a }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment