Watch
1
0
Fork
You've already forked advent-of-code
0

Add Makefile shortcuts

This commit is contained in:
Jeremy Kaplan 2020-12-07 00:11:21 -08:00
commit 4e44365aff
2 changed files with 24 additions and 0 deletions

12
2020/template.ex Normal file
View file

@ -0,0 +1,12 @@
defmodule DayX do
defp read_input do
Path.expand('input', Path.dirname(__ENV__.file))
|> File.read!()
end
def part1 do
read_input()
end
end
DayX.part1() |> IO.inspect()