Advertisement
Guest User

Untitled

a guest
Mar 27th, 2017
139
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
OCaml 0.13 KB | None | 0 0
  1. (*Test.ml*)
  2. module Test_Functor(T:Comparable)= struct
  3.  
  4.   module M = Map.Make(T)
  5.  
  6.   include M
  7.  
  8.   let empty = M.empty
  9. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement