File: README.md

package info (click to toggle)
ocaml-dune 3.17.2-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 32,324 kB
  • sloc: ml: 181,128; ansic: 3,629; sh: 1,054; lisp: 625; makefile: 171; python: 125; cpp: 48; javascript: 10
file content (16 lines) | stat: -rw-r--r-- 515 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
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