1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-03-28 21:16:20 +01:00

dune: add page (#6674)

This commit is contained in:
Daniil Baturin 2021-10-06 22:37:40 +07:00 committed by GitHub
parent da5e72604b
commit c2f4066105
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

20
pages/common/dune.md Normal file
View file

@ -0,0 +1,20 @@
# 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`