How can I use ppx derive (https://github.com/ocaml-ppx/ppx_deriving) in my utop?
For example, I have to following code:
module A = struct
module T = struct
type t = int [@@deriving hash, sexp, compare]
end
include Core_kernel.Hashable.Make(T)
end;;