我在 utop 中添加了等require "sexplib.syntax";;
。core
如果我输入
module type Printer = sig
type t with sexp
end
在 utop 中,它说
模块类型 Printer = sig type t val t_of_sexp : Sexp.t -> t val sexp_of_t : t -> Sexp.t end
好的,这没问题。
但是如果我将上面的代码保存到一个ml
文件中并在 utop 中使用它,它会给出错误:
错误:未绑定类型构造函数_no_unused_value_warning_
为什么?这是utop中的错误吗?我该如何举报?