1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-29 23:24:55 +02:00
tldr/pages/common/dune.md

21 lines
327 B
Markdown
Raw Normal View History

2021-10-06 22:37:40 +07:00
# dune
> A build system for OCaml programs.
> More information: <https://dune.build>.
- 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`