fork(1) download
  1. (* This works *)
  2. module Bar = struct
  3. type t = int
  4. end
  5.  
  6. let d : Bar.t = 3
  7. let e : Bar.t = 5
  8. let f (x : int) (y : int) = x + y
  9. let () = print_int (f d e)
Success #stdin #stdout 0s 4216KB
stdin
Standard input is empty
stdout
8