AdventOfCode/template/dayNpart1.exs

10 lines
152 B
Elixir
Raw Normal View History

2020-12-06 02:45:43 +00:00
defmodule DayREPLACE_MEPart1 do
def run do
File.read!("input")
|> String.trim()
|> String.split("\n")
end
end
DayREPLACE_MEPart1.run()