我向你解释我的问题
我有一个这样的模块:
毫升
module A = struct
type t = int * int
end
a.mli
module A :sig
type t = int * int
end
主文件
let test = A.t(8, 9)
我该如何解决这个错误:
Error: Unbound value A.t
谢谢。
我向你解释我的问题
我有一个这样的模块:
毫升
module A = struct
type t = int * int
end
a.mli
module A :sig
type t = int * int
end
主文件
let test = A.t(8, 9)
我该如何解决这个错误:
Error: Unbound value A.t
谢谢。