An open API service indexing awesome lists of open source software.

https://github.com/diohabara/nn_ocaml

https://ocaml.org/problems
https://github.com/diohabara/nn_ocaml

99problems maybe-done ocaml

Last synced: about 1 year ago
JSON representation

https://ocaml.org/problems

Awesome Lists containing this project

README

          

# nn_ocaml

## how to set up

```bash
opam switch create .
eval $(opam env)
opam install . --deps-only
```

## how to run

```bash
dune exec nn_ocaml
```

## how to build

```bash
dune build
```

watch mode

```bash
dune build -w
```

## how to test

```bash
dune test
```

watch mode

```bash
dune test -w
```

## how to format

```bash
dune fmt --auto-promote
```

## how to build documentation

```bash
dune build @doc
```

open it

```bash
open _build/default/_doc/_html/index.html
```