Add day 5

Signed-off-by: Alek Ratzloff <alekr@jsausa.com>
This commit is contained in:
Alek Ratzloff
2019-12-06 12:05:39 -05:00
parent be5139ec49
commit 491bb87ee3
2 changed files with 306 additions and 0 deletions

11
day05/Makefile Normal file
View File

@@ -0,0 +1,11 @@
TARGET=Day05
.PHONY: all
all: $(TARGET)
$(TARGET): $(TARGET).rs
rustc $<
.PHONY: clean
clean:
rm $(TARGET) -f