Watch
1
0
Fork
You've already forked advent-of-code
0
advent-of-code/2020/template.ex
2021-12-04 21:20:57 -08:00

17 lines
235 B
Elixir

defmodule DayX do
defp read_input do
Path.expand('input', Path.dirname(__ENV__.file))
|> File.read!()
end
defp test_input do
"""
"""
end
def part1 do
read_input()
end
end
DayX.part1() |> IO.inspect()