This commit is contained in:
2023-12-22 21:56:07 +00:00
parent 58f36581f0
commit 497da642b2
10 changed files with 334 additions and 0 deletions

10
day-17/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