This commit is contained in:
bluepython508
2023-12-01 17:51:59 +00:00
commit 235deeccb7
13 changed files with 358 additions and 0 deletions

13
lib/aoc2023.ex Normal file
View File

@@ -0,0 +1,13 @@
defmodule Aoc2023 do
defmacro __using__([]) do
quote do
import Aoc2023.Common
def main(input) do
parsed = parse(input)
IO.puts("Part 1: #{part1(parsed)}")
IO.puts("Part 2: #{part2(parsed)}")
end
end
end
end