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

https://github.com/drewolson/aoc-ocaml

Advent of Code in OCaml
https://github.com/drewolson/aoc-ocaml

Last synced: about 1 year ago
JSON representation

Advent of Code in OCaml

Awesome Lists containing this project

README

          

# Advent of Code in OCaml

## Run

```
dune exec aoc -- -help
dune exec aoc -- --day 1 --part 1
dune exec aoc -- -d 1 -p 1
```

## Build

```
dune build
```

## Test

```
dune test
```

## Create Local Switch

```
opam switch create ./ ocaml-base-compiler.5.3.0 --deps-only --locked
```

## Install New Dependencies

```
opam install . --deps-only
```

## Lock New Dependencies

```
opam lock . --direct-only
```