Skip to content

Latest commit

 

History

History
33 lines (25 loc) · 663 Bytes

File metadata and controls

33 lines (25 loc) · 663 Bytes

Advent of Code in Elixir

To run:

mix deps.get
iex -S mix

While in IEX:

alias AC.Day1
Day1.load_data() |> Day1.part_one()

Pretty...not great way to run it, but hope to improve as this keeps going

Installation

If available in Hex, the package can be installed by adding adventofcode to your list of dependencies in mix.exs:

def deps do
  [
    {:adventofcode, "~> 0.1.0"}
  ]
end

Documentation can be generated with ExDoc and published on HexDocs. Once published, the docs can be found at https://hexdocs.pm/adventofcode.