Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- module New_id() : sig
- type t = private int
- val t : int -> t
- val int : t -> int
- end = struct
- type t = int
- let t x = x
- let int x = x
- end
- module Id1 = New_id()
- module Id2 = New_id()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement