Advertisement
Guest User

Untitled

a guest
Dec 6th, 2015
109
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.23 KB | None | 0 0
  1.  
  2. module type Proov
  3. = sig
  4.  
  5. type t
  6. val a : t
  7.  
  8. end
  9.  
  10. module Proov1
  11. : Proov
  12. with type t = int
  13.  
  14. = struct
  15.  
  16. type t = int
  17.  
  18. let a = 10
  19.  
  20. end
  21.  
  22. module Proov2
  23. : Proov
  24. = struct
  25. let a = 10
  26.  
  27. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement