Skip to content

Latest commit

 

History

History
23 lines (17 loc) · 684 Bytes

README.md

File metadata and controls

23 lines (17 loc) · 684 Bytes

OCaml PPX deriver for deriving show based on ppxlib.

This library reimplements the show plugin from ppx_deriving directly as a ppxlib deriver.

Usage

ppx_show can be used with dune by using the preprocess field. ppx_show.runtime has to be added to runtime libraries.

(executable
  ...
  (preprocess (pps ppx_show))
  (libraries ppx_show.runtime)
  ...)