mte/unikernel/duniverse/dune_/example/hello_world.t
2025-11-11 02:07:51 +01:00
..
bin 2025-11-11 02:07:51 +01:00
lib 2025-11-11 02:07:51 +01:00
test 2025-11-11 02:07:51 +01:00
dune-project 2025-11-11 02:07:51 +01:00
hello_world.opam 2025-11-11 02:07:51 +01:00
README.md 2025-11-11 02:07:51 +01:00
run.t 2025-11-11 02:07:51 +01:00

This project is called hello_world. It defines one library called hello_world and one executable called hello_world.

The library is defined in lib and the executable in bin. It also defines a test in test.

At the toplevel of the project, there is a hello_world.opam file. This file is required so that Dune knows that this is the hello_world project.

To build everything that is meant to be installed in this project, type:

$ dune build @install

To run the tests, type:

$ dune runtest