如何在我的 utop 中使用 ppx 派生( https://github.com/ocaml-ppx/ppx_deriving )?
例如,我必须遵循以下代码:
module A = struct
module T = struct
type t = int [@@deriving hash, sexp, compare]
end
include Core_kernel.Hashable.Make(T)
end;;
如何在我的 utop 中使用 ppx 派生( https://github.com/ocaml-ppx/ppx_deriving )?
例如,我必须遵循以下代码:
module A = struct
module T = struct
type t = int [@@deriving hash, sexp, compare]
end
include Core_kernel.Hashable.Make(T)
end;;