mirror of
https://github.com/daylinmorgan/advent-of-code-2023.git
synced 2024-11-14 15:47:53 -06:00
6 lines
233 B
Nim
6 lines
233 B
Nim
import std/[algorithm,os,sequtils]
|
|
|
|
task solve, "run all solutions":
|
|
for dir in walkDirRec("solutions", yieldFilter = {pcDir}).toSeq().sortedByIt(it):
|
|
echo "--",dir,"--"
|
|
selfExec "r --hint:all:off " & dir & "/solution.nim"
|