advent-of-code/2023/justfile

14 lines
234 B
Makefile
Raw Normal View History

2023-12-01 15:31:20 +00:00
#!/usr/bin/env -S just --justfile
DAY := `date +%d`
new:
cp python/_sample.py python/day{{ DAY }}.py
touch full/day{{ DAY }}.txt
touch samples/day{{ DAY }}.txt
2023-12-03 04:12:04 +00:00
run:
/usr/bin/env python3 python/day{{ DAY }}.py
2023-12-01 15:31:20 +00:00
2023-12-03 04:12:04 +00:00