diff --git a/2022/elixir/.formatter.exs b/2022/elixir/.formatter.exs new file mode 100644 index 0000000..d2cda26 --- /dev/null +++ b/2022/elixir/.formatter.exs @@ -0,0 +1,4 @@ +# Used by "mix format" +[ + inputs: ["{mix,.formatter}.exs", "{config,lib,test}/**/*.{ex,exs}"] +] diff --git a/2022/elixir/.gitignore b/2022/elixir/.gitignore new file mode 100644 index 0000000..9944a60 --- /dev/null +++ b/2022/elixir/.gitignore @@ -0,0 +1,26 @@ +# The directory Mix will write compiled artifacts to. +/_build/ + +# If you run "mix test --cover", coverage assets end up here. +/cover/ + +# The directory Mix downloads your dependencies sources to. +/deps/ + +# Where third-party dependencies like ExDoc output generated docs. +/doc/ + +# Ignore .fetch files in case you like to edit your project deps locally. +/.fetch + +# If the VM crashes, it generates a dump, let's ignore it too. +erl_crash.dump + +# Also ignore archive artifacts (built via "mix archive.build"). +*.ez + +# Ignore package tarball (built via "mix hex.build"). +aoc_2022-*.tar + +# Temporary files, for example, from tests. +/tmp/ diff --git a/2022/elixir/.tool-versions b/2022/elixir/.tool-versions new file mode 100644 index 0000000..440d747 --- /dev/null +++ b/2022/elixir/.tool-versions @@ -0,0 +1,2 @@ +elixir 1.14.2-otp-25 +erlang 25.1.2 diff --git a/2022/elixir/README.md b/2022/elixir/README.md new file mode 100644 index 0000000..be7f39f --- /dev/null +++ b/2022/elixir/README.md @@ -0,0 +1,21 @@ +# Aoc2022 + +**TODO: Add description** + +## Installation + +If [available in Hex](https://hex.pm/docs/publish), the package can be installed +by adding `aoc_2022` to your list of dependencies in `mix.exs`: + +```elixir +def deps do + [ + {:aoc_2022, "~> 0.1.0"} + ] +end +``` + +Documentation can be generated with [ExDoc](https://github.com/elixir-lang/ex_doc) +and published on [HexDocs](https://hexdocs.pm). Once published, the docs can +be found at . + diff --git a/2022/elixir/lib/aoc2022.ex b/2022/elixir/lib/aoc2022.ex new file mode 100644 index 0000000..0606ccf --- /dev/null +++ b/2022/elixir/lib/aoc2022.ex @@ -0,0 +1,18 @@ +defmodule Aoc2022 do + @moduledoc """ + Documentation for `Aoc2022`. + """ + + @doc """ + Hello world. + + ## Examples + + iex> Aoc2022.hello() + :world + + """ + def hello do + :world + end +end diff --git a/2022/elixir/mix.exs b/2022/elixir/mix.exs new file mode 100644 index 0000000..81005b8 --- /dev/null +++ b/2022/elixir/mix.exs @@ -0,0 +1,28 @@ +defmodule Aoc2022.MixProject do + use Mix.Project + + def project do + [ + app: :aoc_2022, + version: "0.1.0", + elixir: "~> 1.14", + start_permanent: Mix.env() == :prod, + deps: deps() + ] + end + + # Run "mix help compile.app" to learn about applications. + def application do + [ + extra_applications: [:logger] + ] + end + + # Run "mix help deps" to learn about dependencies. + defp deps do + [ + # {:dep_from_hexpm, "~> 0.3.0"}, + # {:dep_from_git, git: "https://github.com/elixir-lang/my_dep.git", tag: "0.1.0"} + ] + end +end diff --git a/2022/elixir/test/aoc2022_test.exs b/2022/elixir/test/aoc2022_test.exs new file mode 100644 index 0000000..c2063df --- /dev/null +++ b/2022/elixir/test/aoc2022_test.exs @@ -0,0 +1,8 @@ +defmodule Aoc2022Test do + use ExUnit.Case + doctest Aoc2022 + + test "greets the world" do + assert Aoc2022.hello() == :world + end +end diff --git a/2022/elixir/test/test_helper.exs b/2022/elixir/test/test_helper.exs new file mode 100644 index 0000000..869559e --- /dev/null +++ b/2022/elixir/test/test_helper.exs @@ -0,0 +1 @@ +ExUnit.start()