Skip to content

Instantly share code, notes, and snippets.

@kunigami
Created June 11, 2018 06:05
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save kunigami/90d33de792db0b13bb1ae9db049f4145 to your computer and use it in GitHub Desktop.
Save kunigami/90d33de792db0b13bb1ae9db049f4145 to your computer and use it in GitHub Desktop.
module MyModule : sig
val add: int -> int -> int
val sub: int -> int -> int
end = struct
let add x y = x + y
let sub x y = x - y
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment