1

如何在我的 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;;
4

1 回答 1

2

只需输入:

#require "ppx_jane";;

在 utop 内将使这些宏工作

于 2021-10-19T22:21:37.940 回答