Ecosyste.ms: Awesome
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 month ago
JSON representation
Advent of Code in OCaml
- Host: GitHub
- URL: https://github.com/drewolson/aoc-ocaml
- Owner: drewolson
- Created: 2023-10-11T22:24:49.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2024-10-31T19:56:15.000Z (about 2 months ago)
- Last Synced: 2024-10-31T20:30:53.775Z (about 2 months ago)
- Language: OCaml
- Homepage:
- Size: 309 KB
- Stars: 2
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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.2.0 --deps-only --locked
```## Install New Dependencies
```
opam install . --deps-only --locked
```## Lock New Dependencies
```
opam lock . --direct-only
```