This commit is contained in:
2023-12-22 21:57:00 +00:00
parent 497da642b2
commit 038dd531d9
7 changed files with 205 additions and 0 deletions

10
day-18/makefile Normal file
View File

@@ -0,0 +1,10 @@
TEST="test.txt"
INPUT="input.txt"
test:
go run . < $(TEST)
run:
go run . < $(INPUT)
all: test