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
- Host: GitHub
- URL: https://github.com/diohabara/nn_ocaml
- Owner: diohabara
- License: mit
- Created: 2022-10-30T03:51:48.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2023-02-03T17:22:21.000Z (over 3 years ago)
- Last Synced: 2025-01-30T03:25:26.261Z (over 1 year ago)
- Topics: 99problems, maybe-done, ocaml
- Language: OCaml
- Homepage:
- Size: 33.2 KB
- Stars: 2
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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
```