Skip to content

thierry-martinez/ppx_show

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

23 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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)
  ...)