package ppx_demo
Install
Dune Dependency
Authors
Maintainers
Sources
sha256=6abef5c073772cef7d37fba6bbfd76b1ac32e0ad94976a63f91762bcaf783507
Description
PPX that exposes the source code string of an expression/module structure.
Published: 14 Jun 2023
README
ppx_demo
This is a preprocessor that expands an arbitrary expression into a tuple containing the source code for the expression along with the expression itself. Look at the tests of for some examples.
You might want this ppx if you have a program which acts as documentation. For example, the Bonsai devs have a collection of examples that demonstrate how to use various UI components. Viewing those examples in a browser shows the result of the code, but not the code itself, which means that if someone wants to see how much code a particular example takes, they need to navigate in their text editor to the example's source file. This ppx makes it possible to easily include source for an example directly within the example itself.