Skip to content

Instantly share code, notes, and snippets.

@nomaddo
Created November 5, 2014 11:21
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 nomaddo/1a0de3f9415080619aaa to your computer and use it in GitHub Desktop.
Save nomaddo/1a0de3f9415080619aaa to your computer and use it in GitHub Desktop.
unit3.ml
# module M = struct type t = () end;;;;;
module M : sig type t = () end
# M.();;
Characters 3-4:
M.();;
^
Error: Syntax error: operator expected.
# M.(());;
- : M.t = M.()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment