Skip to content

Instantly share code, notes, and snippets.

@zindel
Last active November 6, 2018 21:41
Show Gist options
  • Select an option

  • Save zindel/9837c3bb04f754e7c37afa127835bc3d to your computer and use it in GitHub Desktop.

Select an option

Save zindel/9837c3bb04f754e7c37afa127835bc3d to your computer and use it in GitHub Desktop.
module type TRACK = sig
type 'a t
end
module Track : TRACK = struct
type 'a t = Let of string * 'a t | Do of ('a t -> 'a t)
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment