From 45cc5d84e967e87ebe08bfc6ba5a0bb8a8b900f8 Mon Sep 17 00:00:00 2001 From: Daylin Morgan Date: Sat, 2 Dec 2023 11:26:11 -0600 Subject: [PATCH] fix: actually use day in skeleton --- tools/aoc.nim | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/aoc.nim b/tools/aoc.nim index 833af23..bd0d36d 100644 --- a/tools/aoc.nim +++ b/tools/aoc.nim @@ -18,7 +18,7 @@ proc getInput(year, day: int): string = return response.body().strip() proc skeleton(day: int) = - const solution = """ + let solution = fmt""" import std/[strutils] const example* = slurp("example.txt").strip()