my solutions to advent of code
aoc advent-of-code

elixir template why not

aylac.top a14f6504 4ce07275

verified
Changed files
+9
template
elixir
+1
.gitignore
···
build
input.txt
input.json
···
build
input.txt
input.json
+
_build
+8
template/elixir/main.exs
···
···
+
defmodule Main do
+
{_, input} =
+
File.read("../input.txt")
+
+
input = input |> String.trim()
+
+
IO.puts(input)
+
end