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

12
lib/aoc2023.ex Normal file
View File

@@ -0,0 +1,12 @@
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