add day7 with elixir

This commit is contained in:
Pim Kunis 2023-12-07 12:08:34 +01:00
parent 37165b60fd
commit 136802984d
11 changed files with 1311 additions and 0 deletions

View file

@ -0,0 +1,8 @@
defmodule AocTest do
use ExUnit.Case
doctest Aoc
test "greets the world" do
assert Aoc.hello() == :world
end
end

View file

@ -0,0 +1 @@
ExUnit.start()