This commit is contained in:
2022-12-17 19:38:50 +01:00
parent 1557768450
commit 949178dd0c
4 changed files with 362 additions and 0 deletions

13
template.nim Normal file
View File

@@ -0,0 +1,13 @@
import std/[]
const input = readFile("input.txt")
proc solvePart1() =
echo "TODO"
proc solvePart2() =
echo "TODO"
if isMainModule:
solvePart1()
solvePart2()