mirror of
https://github.com/daylinmorgan/advent-of-code-2023.git
synced 2024-11-12 14:53:15 -06:00
5 lines
194 B
Nim
5 lines
194 B
Nim
import std/[algorithm,os,sequtils]
|
|
|
|
task solve, "run all solutions":
|
|
for dir in walkDir("solutions").toSeq().sortedByIt(it.path):
|
|
selfExec "r --hint:all:off " & dir.path & "/solution.nim"
|