Skip to content

Instantly share code, notes, and snippets.

@kunigami
Created November 13, 2017 17:58
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 kunigami/1c2d9799e25939c36c7af9b06e2a98b3 to your computer and use it in GitHub Desktop.
Save kunigami/1c2d9799e25939c36c7af9b06e2a98b3 to your computer and use it in GitHub Desktop.
module rec Even = struct
type t = Zero | Succ of Odd.t
end
and Odd = struct
type t = Succ of Even.t
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment