Created
March 28, 2016 10:26
-
-
Save Lysxia/83a7dbc2cb1a34eee1dd to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
module M = struct | |
include BasicBlock_types | |
let f X Y Z = () | |
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
module M : sig | |
include module type of BasicBlock_types | |
val f : x -> y -> z -> unit | |
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
type x = X | |
type y = Y | |
type z = Z |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment