Bindlib is a library allowing the manipulation of data structures with bound variables. It is particularly useful when writing ASTs for programming languages, but also for manipulating terms of the λ-calculus or quantified formulas. In the internals, binders are represented using a form of higher-order abstract syntax (HOAS).
Ressources:
Projects using Bindlib:
- Lambdapi (implementation of Dedukti)
- PML₂ language
- SubML language
- PML
- Many more small projects...
List of dependencies:
- OCaml (at least 3.12)
- Findlib (build)
- OCamlbuild (build)
- GNU Make (build)
make
make install
To generate the documentation (ocamldoc):
make doc
To build the examples:
make examples
make tests