This commit is contained in:
2023-12-14 22:22:41 +00:00
parent 0c26ef875a
commit b98379ca2b
7 changed files with 202 additions and 0 deletions

10
day-14/makefile Normal file
View File

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