From 3759966ea610d40d37fe7268585cdc7cf8f5b500 Mon Sep 17 00:00:00 2001 From: Daylin Morgan Date: Fri, 1 Dec 2023 05:38:47 -0600 Subject: [PATCH] use the correct default day value --- tools/aoc.nim | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/aoc.nim b/tools/aoc.nim index 1adc617..1a3ae7e 100644 --- a/tools/aoc.nim +++ b/tools/aoc.nim @@ -89,7 +89,7 @@ options: let today = now() var year = today.year - day = today.weekday.ord + day = parseInt(today.format("d")) for kind, key, val in getopt(): case kind