AdventOfCode/template/dayNpart1.exs

10 lines
163 B
Elixir
Raw Normal View History

2020-12-06 02:45:43 +00:00
defmodule DayREPLACE_MEPart1 do
def run do
File.read!("input")
2020-12-10 15:28:41 +00:00
|> String.split("\n", trim: true)
2020-12-12 10:46:22 +00:00
|> IO.inspect()
2020-12-06 02:45:43 +00:00
end
end
DayREPLACE_MEPart1.run()