[wadler] One more bit of writing.

This commit is contained in:
John Doty 2024-09-21 07:45:59 -07:00
parent 1a3ce02d48
commit b1f4c56f49

View file

@ -1,4 +1,12 @@
# A prettier printer.
"""Generate [Wadler-style](https://homepages.inf.ed.ac.uk/wadler/papers/prettier/prettier.pdf)
pretty printers from grammars.
Use the functions in the [builder] module to generate tables from grammars.
You can then feed those tables into a generic pretty-printer implementation,
like what we have in the [runtime] module.
"""
from . import builder
from . import runtime