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

https://github.com/renormalize/ocaml-aoc-2023

Advent Of Code 2023's solutions in OCaml
https://github.com/renormalize/ocaml-aoc-2023

advent-of-code advent-of-code-2023 advent-of-code-2023-ocaml advent-of-code-ocaml

Last synced: 4 months ago
JSON representation

Advent Of Code 2023's solutions in OCaml

Awesome Lists containing this project

README

        

# Advent of Code 2023 in OCaml

Each day's solution functions are in its corresponding directory.
The bin directory contains `dayXbin.ml` files which invoke the solution functions.

To run a particular day's solutions, run:

```bash
dune exec day_integer
```

For example, to run day 1's solutions, run:

```bash
dune exec 1
```