There you can find starting projects for OCanren hacking:
-
The dune+PPX-based project is in
demo1ppxdirectory.-
This demo works with js_of_ocaml too
$ dune b demo1ppx/appendo.bc.js $ node _build/default/demo1ppx/appendo.bc.js fun q -> fun r -> appendo q r (list (!!) [1; 2; 3; 4]), all answers { q=[]; r=[1; 2; 3; 4]; q=[1]; r=[2; 3; 4]; q=[1; 2]; r=[3; 4]; q=[1; 2; 3]; r=[4]; q=[1; 2; 3; 4]; r=[]; }
-
-
The dune+Camlp5-based --
demo2camlp5 -
The Camlp5+Makefile --
demo3make. -
The dune+noCanren --
demo4ppx-noCanren. -
The Camlp5+PPX+noCanren+make --
demo5.