diff options
| author | Alexandre Jesus <adbjesus@gmail.com> | 2025-12-01 11:44:39 +0000 |
|---|---|---|
| committer | Alexandre Jesus <adbjesus@gmail.com> | 2025-12-01 11:44:39 +0000 |
| commit | 735b792bcf2a8cc1fb77c19c42e6362a9abb429f (patch) | |
| tree | 4f141174fbc2468d2e47b3c30ae7d171197270f2 /lib | |
| download | aoc2025-735b792bcf2a8cc1fb77c19c42e6362a9abb429f.tar.gz aoc2025-735b792bcf2a8cc1fb77c19c42e6362a9abb429f.zip | |
Initial commit
Diffstat (limited to 'lib')
| -rw-r--r-- | lib/day01.ml | 11 | ||||
| -rw-r--r-- | lib/dune | 6 |
2 files changed, 17 insertions, 0 deletions
diff --git a/lib/day01.ml b/lib/day01.ml new file mode 100644 index 0000000..e1d6457 --- /dev/null +++ b/lib/day01.ml @@ -0,0 +1,11 @@ +(* + * SPDX-FileCopyrightText: Copyright 2025 Alexandre Jesus <https://adbjesus.com> + * + * SPDX-License-Identifier: GPL-3.0-or-later + *) + +let part1 _ch = + failwith "Unimplemented" + +let part2 _ch = + failwith "Unimplemented" diff --git a/lib/dune b/lib/dune new file mode 100644 index 0000000..8453ca7 --- /dev/null +++ b/lib/dune @@ -0,0 +1,6 @@ +; SPDX-FileCopyrightText: Copyright 2025 Alexandre Jesus <https://adbjesus.com> +; +; SPDX-License-Identifier: CC0-1.0 + +(library + (name aoc2025)) |
