fix indentation and cleanup

This commit is contained in:
Huanzo 2021-11-28 17:26:44 +01:00
parent 5aa86cfc4c
commit 15d29a1403
2 changed files with 6 additions and 4 deletions

6
aoc.jl
View File

@ -25,9 +25,9 @@ end
function _setup_aoc(year, day)
path = _data_path(day)
if isfile(path)
return
end
if isfile(path)
return
end
open(path, "w") do f
write(f, _get_input(year, day))
end

View File

@ -5,6 +5,8 @@ function p1(input)
nothing
end
p2(input) = nothing
function p2(input)
end
@aoc(2021, 1)