From c2f40661051c5724a1dbf0bf594a794c7e8ad31b Mon Sep 17 00:00:00 2001 From: Daniil Baturin Date: Wed, 6 Oct 2021 22:37:40 +0700 Subject: [PATCH] dune: add page (#6674) --- pages/common/dune.md | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 pages/common/dune.md diff --git a/pages/common/dune.md b/pages/common/dune.md new file mode 100644 index 0000000000..25b89c696e --- /dev/null +++ b/pages/common/dune.md @@ -0,0 +1,20 @@ +# dune + +> A build system for OCaml programs. +> More information: . + +- Build all targets: + +`dune build` + +- Clean up the workspace: + +`dune clean` + +- Run all tests: + +`dune runtest` + +- Start the utop REPL with compiled modules automatically loaded into it, to remove the need to load them by hand: + +`dune utop`