mirror of
https://github.com/daylinmorgan/advent-of-code-2023.git
synced 2024-12-22 03:10:44 -06:00
use the correct default day value
This commit is contained in:
parent
613cc75237
commit
3759966ea6
1 changed files with 1 additions and 1 deletions
|
@ -89,7 +89,7 @@ options:
|
||||||
let today = now()
|
let today = now()
|
||||||
var
|
var
|
||||||
year = today.year
|
year = today.year
|
||||||
day = today.weekday.ord
|
day = parseInt(today.format("d"))
|
||||||
|
|
||||||
for kind, key, val in getopt():
|
for kind, key, val in getopt():
|
||||||
case kind
|
case kind
|
||||||
|
|
Loading…
Reference in a new issue