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
··· 2 2 build 3 3 input.txt 4 4 input.json 5 + _build
+8
template/elixir/main.exs
··· 1 + defmodule Main do 2 + {_, input} = 3 + File.read("../input.txt") 4 + 5 + input = input |> String.trim() 6 + 7 + IO.puts(input) 8 + end