├── .github └── workflows │ └── ci.yml ├── .gitignore ├── .ocamlformat ├── .vscode └── settings.json ├── LICENSE ├── Makefile ├── README.md ├── dune-project ├── ppx-simple-example.opam ├── src ├── dune └── ppx.ml └── test ├── basic.t └── run.t ├── dune └── standalone.ml /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml-in-barcelona/ppxlib-simple-example/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml-in-barcelona/ppxlib-simple-example/HEAD/.gitignore -------------------------------------------------------------------------------- /.ocamlformat: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml-in-barcelona/ppxlib-simple-example/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml-in-barcelona/ppxlib-simple-example/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml-in-barcelona/ppxlib-simple-example/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml-in-barcelona/ppxlib-simple-example/HEAD/README.md -------------------------------------------------------------------------------- /dune-project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml-in-barcelona/ppxlib-simple-example/HEAD/dune-project -------------------------------------------------------------------------------- /ppx-simple-example.opam: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml-in-barcelona/ppxlib-simple-example/HEAD/ppx-simple-example.opam -------------------------------------------------------------------------------- /src/dune: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml-in-barcelona/ppxlib-simple-example/HEAD/src/dune -------------------------------------------------------------------------------- /src/ppx.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml-in-barcelona/ppxlib-simple-example/HEAD/src/ppx.ml -------------------------------------------------------------------------------- /test/basic.t/run.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml-in-barcelona/ppxlib-simple-example/HEAD/test/basic.t/run.t -------------------------------------------------------------------------------- /test/dune: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml-in-barcelona/ppxlib-simple-example/HEAD/test/dune -------------------------------------------------------------------------------- /test/standalone.ml: -------------------------------------------------------------------------------- 1 | let () = Ppxlib.Driver.standalone () 2 | --------------------------------------------------------------------------------