├── .gitattributes ├── .github └── FUNDING.yml ├── .gitignore ├── .ocamlformat ├── LICENSE ├── README.org ├── chapter1 ├── chapter1.md ├── dune └── dune.inc ├── chapter10 ├── README.md ├── dune ├── dune.inc └── prelude.ml ├── chapter11 ├── README.md ├── dune ├── dune.inc └── prelude.ml ├── chapter12 ├── README.md ├── dune ├── dune.inc └── prelude.ml ├── chapter13 ├── README.md ├── dune ├── dune.inc └── prelude.ml ├── chapter14 ├── README.md ├── dune ├── dune.inc └── prelude.ml ├── chapter15 ├── README.md ├── dune ├── dune.inc └── prelude.ml ├── chapter16 ├── README.md ├── dune ├── dune.inc └── prelude.ml ├── chapter17 └── README.md ├── chapter18 ├── README.md ├── dune ├── dune.inc └── prelude.ml ├── chapter19 ├── README.md ├── dune ├── dune.inc └── prelude.ml ├── chapter2 ├── README.md ├── dune ├── dune.inc └── prelude.ml ├── chapter20 ├── README.md ├── dune ├── dune.inc └── prelude.ml ├── chapter21 ├── README.md ├── dune ├── dune.inc └── prelude.ml ├── chapter22 ├── README.md ├── dune ├── dune.inc └── prelude.ml ├── chapter23 ├── README.md ├── dune ├── dune.inc └── prelude.ml ├── chapter24 ├── README.md ├── dune ├── dune.inc └── prelude.ml ├── chapter25 ├── README.md ├── dune ├── dune.inc └── prelude.ml ├── chapter26 ├── README.md ├── dune ├── dune.inc └── prelude.ml ├── chapter27 ├── README.md ├── dune ├── dune.inc └── prelude.ml ├── chapter3 ├── README.md ├── dune ├── dune.inc └── prelude.ml ├── chapter30 ├── README.md ├── dune ├── dune.inc └── prelude.ml ├── chapter4 ├── README.md ├── dune ├── dune.inc └── prelude.ml ├── chapter5 ├── README.md ├── dune ├── dune.inc └── prelude.ml ├── chapter6 ├── README.md ├── dune ├── dune.inc └── prelude.ml ├── chapter7 ├── README.md ├── dune ├── dune.inc └── prelude.ml ├── chapter8 ├── README.md ├── dune ├── dune.inc └── prelude.ml ├── chapter9 ├── README.md ├── dune ├── dune.inc └── prelude.ml ├── dune ├── dune-project ├── ocaml-ctfp.install ├── ocaml-ctfp.opam └── playground ├── .merlin ├── dune ├── dune-project ├── playground.md └── playground.md.out.expected /.gitattributes: -------------------------------------------------------------------------------- 1 | *.md linguist-language=OCaml 2 | -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArulselvanMadhavan/ocaml-ctfp/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArulselvanMadhavan/ocaml-ctfp/HEAD/.gitignore -------------------------------------------------------------------------------- /.ocamlformat: -------------------------------------------------------------------------------- 1 | profile=janestreet 2 | margin=70 -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArulselvanMadhavan/ocaml-ctfp/HEAD/LICENSE -------------------------------------------------------------------------------- /README.org: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArulselvanMadhavan/ocaml-ctfp/HEAD/README.org -------------------------------------------------------------------------------- /chapter1/chapter1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArulselvanMadhavan/ocaml-ctfp/HEAD/chapter1/chapter1.md -------------------------------------------------------------------------------- /chapter1/dune: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArulselvanMadhavan/ocaml-ctfp/HEAD/chapter1/dune -------------------------------------------------------------------------------- /chapter1/dune.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArulselvanMadhavan/ocaml-ctfp/HEAD/chapter1/dune.inc -------------------------------------------------------------------------------- /chapter10/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArulselvanMadhavan/ocaml-ctfp/HEAD/chapter10/README.md -------------------------------------------------------------------------------- /chapter10/dune: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArulselvanMadhavan/ocaml-ctfp/HEAD/chapter10/dune -------------------------------------------------------------------------------- /chapter10/dune.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArulselvanMadhavan/ocaml-ctfp/HEAD/chapter10/dune.inc -------------------------------------------------------------------------------- /chapter10/prelude.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArulselvanMadhavan/ocaml-ctfp/HEAD/chapter10/prelude.ml -------------------------------------------------------------------------------- /chapter11/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArulselvanMadhavan/ocaml-ctfp/HEAD/chapter11/README.md -------------------------------------------------------------------------------- /chapter11/dune: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArulselvanMadhavan/ocaml-ctfp/HEAD/chapter11/dune -------------------------------------------------------------------------------- /chapter11/dune.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArulselvanMadhavan/ocaml-ctfp/HEAD/chapter11/dune.inc -------------------------------------------------------------------------------- /chapter11/prelude.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArulselvanMadhavan/ocaml-ctfp/HEAD/chapter11/prelude.ml -------------------------------------------------------------------------------- /chapter12/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArulselvanMadhavan/ocaml-ctfp/HEAD/chapter12/README.md -------------------------------------------------------------------------------- /chapter12/dune: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArulselvanMadhavan/ocaml-ctfp/HEAD/chapter12/dune -------------------------------------------------------------------------------- /chapter12/dune.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArulselvanMadhavan/ocaml-ctfp/HEAD/chapter12/dune.inc -------------------------------------------------------------------------------- /chapter12/prelude.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArulselvanMadhavan/ocaml-ctfp/HEAD/chapter12/prelude.ml -------------------------------------------------------------------------------- /chapter13/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArulselvanMadhavan/ocaml-ctfp/HEAD/chapter13/README.md -------------------------------------------------------------------------------- /chapter13/dune: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArulselvanMadhavan/ocaml-ctfp/HEAD/chapter13/dune -------------------------------------------------------------------------------- /chapter13/dune.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArulselvanMadhavan/ocaml-ctfp/HEAD/chapter13/dune.inc -------------------------------------------------------------------------------- /chapter13/prelude.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArulselvanMadhavan/ocaml-ctfp/HEAD/chapter13/prelude.ml -------------------------------------------------------------------------------- /chapter14/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArulselvanMadhavan/ocaml-ctfp/HEAD/chapter14/README.md -------------------------------------------------------------------------------- /chapter14/dune: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArulselvanMadhavan/ocaml-ctfp/HEAD/chapter14/dune -------------------------------------------------------------------------------- /chapter14/dune.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArulselvanMadhavan/ocaml-ctfp/HEAD/chapter14/dune.inc -------------------------------------------------------------------------------- /chapter14/prelude.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArulselvanMadhavan/ocaml-ctfp/HEAD/chapter14/prelude.ml -------------------------------------------------------------------------------- /chapter15/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArulselvanMadhavan/ocaml-ctfp/HEAD/chapter15/README.md -------------------------------------------------------------------------------- /chapter15/dune: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArulselvanMadhavan/ocaml-ctfp/HEAD/chapter15/dune -------------------------------------------------------------------------------- /chapter15/dune.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArulselvanMadhavan/ocaml-ctfp/HEAD/chapter15/dune.inc -------------------------------------------------------------------------------- /chapter15/prelude.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArulselvanMadhavan/ocaml-ctfp/HEAD/chapter15/prelude.ml -------------------------------------------------------------------------------- /chapter16/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArulselvanMadhavan/ocaml-ctfp/HEAD/chapter16/README.md -------------------------------------------------------------------------------- /chapter16/dune: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArulselvanMadhavan/ocaml-ctfp/HEAD/chapter16/dune -------------------------------------------------------------------------------- /chapter16/dune.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArulselvanMadhavan/ocaml-ctfp/HEAD/chapter16/dune.inc -------------------------------------------------------------------------------- /chapter16/prelude.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArulselvanMadhavan/ocaml-ctfp/HEAD/chapter16/prelude.ml -------------------------------------------------------------------------------- /chapter17/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArulselvanMadhavan/ocaml-ctfp/HEAD/chapter17/README.md -------------------------------------------------------------------------------- /chapter18/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArulselvanMadhavan/ocaml-ctfp/HEAD/chapter18/README.md -------------------------------------------------------------------------------- /chapter18/dune: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArulselvanMadhavan/ocaml-ctfp/HEAD/chapter18/dune -------------------------------------------------------------------------------- /chapter18/dune.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArulselvanMadhavan/ocaml-ctfp/HEAD/chapter18/dune.inc -------------------------------------------------------------------------------- /chapter18/prelude.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArulselvanMadhavan/ocaml-ctfp/HEAD/chapter18/prelude.ml -------------------------------------------------------------------------------- /chapter19/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArulselvanMadhavan/ocaml-ctfp/HEAD/chapter19/README.md -------------------------------------------------------------------------------- /chapter19/dune: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArulselvanMadhavan/ocaml-ctfp/HEAD/chapter19/dune -------------------------------------------------------------------------------- /chapter19/dune.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArulselvanMadhavan/ocaml-ctfp/HEAD/chapter19/dune.inc -------------------------------------------------------------------------------- /chapter19/prelude.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArulselvanMadhavan/ocaml-ctfp/HEAD/chapter19/prelude.ml -------------------------------------------------------------------------------- /chapter2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArulselvanMadhavan/ocaml-ctfp/HEAD/chapter2/README.md -------------------------------------------------------------------------------- /chapter2/dune: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArulselvanMadhavan/ocaml-ctfp/HEAD/chapter2/dune -------------------------------------------------------------------------------- /chapter2/dune.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArulselvanMadhavan/ocaml-ctfp/HEAD/chapter2/dune.inc -------------------------------------------------------------------------------- /chapter2/prelude.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArulselvanMadhavan/ocaml-ctfp/HEAD/chapter2/prelude.ml -------------------------------------------------------------------------------- /chapter20/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArulselvanMadhavan/ocaml-ctfp/HEAD/chapter20/README.md -------------------------------------------------------------------------------- /chapter20/dune: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArulselvanMadhavan/ocaml-ctfp/HEAD/chapter20/dune -------------------------------------------------------------------------------- /chapter20/dune.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArulselvanMadhavan/ocaml-ctfp/HEAD/chapter20/dune.inc -------------------------------------------------------------------------------- /chapter20/prelude.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArulselvanMadhavan/ocaml-ctfp/HEAD/chapter20/prelude.ml -------------------------------------------------------------------------------- /chapter21/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArulselvanMadhavan/ocaml-ctfp/HEAD/chapter21/README.md -------------------------------------------------------------------------------- /chapter21/dune: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArulselvanMadhavan/ocaml-ctfp/HEAD/chapter21/dune -------------------------------------------------------------------------------- /chapter21/dune.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArulselvanMadhavan/ocaml-ctfp/HEAD/chapter21/dune.inc -------------------------------------------------------------------------------- /chapter21/prelude.ml: -------------------------------------------------------------------------------- 1 | #require "gen";; 2 | 3 | let () = Printexc.record_backtrace false 4 | -------------------------------------------------------------------------------- /chapter22/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArulselvanMadhavan/ocaml-ctfp/HEAD/chapter22/README.md -------------------------------------------------------------------------------- /chapter22/dune: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArulselvanMadhavan/ocaml-ctfp/HEAD/chapter22/dune -------------------------------------------------------------------------------- /chapter22/dune.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArulselvanMadhavan/ocaml-ctfp/HEAD/chapter22/dune.inc -------------------------------------------------------------------------------- /chapter22/prelude.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArulselvanMadhavan/ocaml-ctfp/HEAD/chapter22/prelude.ml -------------------------------------------------------------------------------- /chapter23/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArulselvanMadhavan/ocaml-ctfp/HEAD/chapter23/README.md -------------------------------------------------------------------------------- /chapter23/dune: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArulselvanMadhavan/ocaml-ctfp/HEAD/chapter23/dune -------------------------------------------------------------------------------- /chapter23/dune.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArulselvanMadhavan/ocaml-ctfp/HEAD/chapter23/dune.inc -------------------------------------------------------------------------------- /chapter23/prelude.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArulselvanMadhavan/ocaml-ctfp/HEAD/chapter23/prelude.ml -------------------------------------------------------------------------------- /chapter24/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArulselvanMadhavan/ocaml-ctfp/HEAD/chapter24/README.md -------------------------------------------------------------------------------- /chapter24/dune: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArulselvanMadhavan/ocaml-ctfp/HEAD/chapter24/dune -------------------------------------------------------------------------------- /chapter24/dune.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArulselvanMadhavan/ocaml-ctfp/HEAD/chapter24/dune.inc -------------------------------------------------------------------------------- /chapter24/prelude.ml: -------------------------------------------------------------------------------- 1 | #require "gen";; 2 | 3 | let () = Printexc.record_backtrace false 4 | -------------------------------------------------------------------------------- /chapter25/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArulselvanMadhavan/ocaml-ctfp/HEAD/chapter25/README.md -------------------------------------------------------------------------------- /chapter25/dune: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArulselvanMadhavan/ocaml-ctfp/HEAD/chapter25/dune -------------------------------------------------------------------------------- /chapter25/dune.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArulselvanMadhavan/ocaml-ctfp/HEAD/chapter25/dune.inc -------------------------------------------------------------------------------- /chapter25/prelude.ml: -------------------------------------------------------------------------------- 1 | #require "gen";; 2 | 3 | let () = Printexc.record_backtrace false 4 | -------------------------------------------------------------------------------- /chapter26/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArulselvanMadhavan/ocaml-ctfp/HEAD/chapter26/README.md -------------------------------------------------------------------------------- /chapter26/dune: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArulselvanMadhavan/ocaml-ctfp/HEAD/chapter26/dune -------------------------------------------------------------------------------- /chapter26/dune.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArulselvanMadhavan/ocaml-ctfp/HEAD/chapter26/dune.inc -------------------------------------------------------------------------------- /chapter26/prelude.ml: -------------------------------------------------------------------------------- 1 | #require "gen";; 2 | 3 | let () = Printexc.record_backtrace false 4 | -------------------------------------------------------------------------------- /chapter27/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArulselvanMadhavan/ocaml-ctfp/HEAD/chapter27/README.md -------------------------------------------------------------------------------- /chapter27/dune: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArulselvanMadhavan/ocaml-ctfp/HEAD/chapter27/dune -------------------------------------------------------------------------------- /chapter27/dune.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArulselvanMadhavan/ocaml-ctfp/HEAD/chapter27/dune.inc -------------------------------------------------------------------------------- /chapter27/prelude.ml: -------------------------------------------------------------------------------- 1 | #require "gen";; 2 | 3 | let () = Printexc.record_backtrace false 4 | -------------------------------------------------------------------------------- /chapter3/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArulselvanMadhavan/ocaml-ctfp/HEAD/chapter3/README.md -------------------------------------------------------------------------------- /chapter3/dune: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArulselvanMadhavan/ocaml-ctfp/HEAD/chapter3/dune -------------------------------------------------------------------------------- /chapter3/dune.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArulselvanMadhavan/ocaml-ctfp/HEAD/chapter3/dune.inc -------------------------------------------------------------------------------- /chapter3/prelude.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArulselvanMadhavan/ocaml-ctfp/HEAD/chapter3/prelude.ml -------------------------------------------------------------------------------- /chapter30/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArulselvanMadhavan/ocaml-ctfp/HEAD/chapter30/README.md -------------------------------------------------------------------------------- /chapter30/dune: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArulselvanMadhavan/ocaml-ctfp/HEAD/chapter30/dune -------------------------------------------------------------------------------- /chapter30/dune.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArulselvanMadhavan/ocaml-ctfp/HEAD/chapter30/dune.inc -------------------------------------------------------------------------------- /chapter30/prelude.ml: -------------------------------------------------------------------------------- 1 | #require "gen";; 2 | 3 | let () = Printexc.record_backtrace false 4 | -------------------------------------------------------------------------------- /chapter4/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArulselvanMadhavan/ocaml-ctfp/HEAD/chapter4/README.md -------------------------------------------------------------------------------- /chapter4/dune: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArulselvanMadhavan/ocaml-ctfp/HEAD/chapter4/dune -------------------------------------------------------------------------------- /chapter4/dune.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArulselvanMadhavan/ocaml-ctfp/HEAD/chapter4/dune.inc -------------------------------------------------------------------------------- /chapter4/prelude.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArulselvanMadhavan/ocaml-ctfp/HEAD/chapter4/prelude.ml -------------------------------------------------------------------------------- /chapter5/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArulselvanMadhavan/ocaml-ctfp/HEAD/chapter5/README.md -------------------------------------------------------------------------------- /chapter5/dune: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArulselvanMadhavan/ocaml-ctfp/HEAD/chapter5/dune -------------------------------------------------------------------------------- /chapter5/dune.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArulselvanMadhavan/ocaml-ctfp/HEAD/chapter5/dune.inc -------------------------------------------------------------------------------- /chapter5/prelude.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArulselvanMadhavan/ocaml-ctfp/HEAD/chapter5/prelude.ml -------------------------------------------------------------------------------- /chapter6/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArulselvanMadhavan/ocaml-ctfp/HEAD/chapter6/README.md -------------------------------------------------------------------------------- /chapter6/dune: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArulselvanMadhavan/ocaml-ctfp/HEAD/chapter6/dune -------------------------------------------------------------------------------- /chapter6/dune.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArulselvanMadhavan/ocaml-ctfp/HEAD/chapter6/dune.inc -------------------------------------------------------------------------------- /chapter6/prelude.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArulselvanMadhavan/ocaml-ctfp/HEAD/chapter6/prelude.ml -------------------------------------------------------------------------------- /chapter7/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArulselvanMadhavan/ocaml-ctfp/HEAD/chapter7/README.md -------------------------------------------------------------------------------- /chapter7/dune: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArulselvanMadhavan/ocaml-ctfp/HEAD/chapter7/dune -------------------------------------------------------------------------------- /chapter7/dune.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArulselvanMadhavan/ocaml-ctfp/HEAD/chapter7/dune.inc -------------------------------------------------------------------------------- /chapter7/prelude.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArulselvanMadhavan/ocaml-ctfp/HEAD/chapter7/prelude.ml -------------------------------------------------------------------------------- /chapter8/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArulselvanMadhavan/ocaml-ctfp/HEAD/chapter8/README.md -------------------------------------------------------------------------------- /chapter8/dune: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArulselvanMadhavan/ocaml-ctfp/HEAD/chapter8/dune -------------------------------------------------------------------------------- /chapter8/dune.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArulselvanMadhavan/ocaml-ctfp/HEAD/chapter8/dune.inc -------------------------------------------------------------------------------- /chapter8/prelude.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArulselvanMadhavan/ocaml-ctfp/HEAD/chapter8/prelude.ml -------------------------------------------------------------------------------- /chapter9/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArulselvanMadhavan/ocaml-ctfp/HEAD/chapter9/README.md -------------------------------------------------------------------------------- /chapter9/dune: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArulselvanMadhavan/ocaml-ctfp/HEAD/chapter9/dune -------------------------------------------------------------------------------- /chapter9/dune.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArulselvanMadhavan/ocaml-ctfp/HEAD/chapter9/dune.inc -------------------------------------------------------------------------------- /chapter9/prelude.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArulselvanMadhavan/ocaml-ctfp/HEAD/chapter9/prelude.ml -------------------------------------------------------------------------------- /dune: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArulselvanMadhavan/ocaml-ctfp/HEAD/dune -------------------------------------------------------------------------------- /dune-project: -------------------------------------------------------------------------------- 1 | (lang dune 1.8) 2 | -------------------------------------------------------------------------------- /ocaml-ctfp.install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArulselvanMadhavan/ocaml-ctfp/HEAD/ocaml-ctfp.install -------------------------------------------------------------------------------- /ocaml-ctfp.opam: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArulselvanMadhavan/ocaml-ctfp/HEAD/ocaml-ctfp.opam -------------------------------------------------------------------------------- /playground/.merlin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArulselvanMadhavan/ocaml-ctfp/HEAD/playground/.merlin -------------------------------------------------------------------------------- /playground/dune: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArulselvanMadhavan/ocaml-ctfp/HEAD/playground/dune -------------------------------------------------------------------------------- /playground/dune-project: -------------------------------------------------------------------------------- 1 | (lang dune 1.8) 2 | -------------------------------------------------------------------------------- /playground/playground.md: -------------------------------------------------------------------------------- 1 | * mdx Playground 2 | ```ocaml 3 | print_endline "42" 4 | ``` 5 | -------------------------------------------------------------------------------- /playground/playground.md.out.expected: -------------------------------------------------------------------------------- 1 | 42 2 | --------------------------------------------------------------------------------