mirror of
https://github.com/daylinmorgan/advent-of-code-2023.git
synced 2024-11-09 13:33:15 -06:00
6 lines
194 B
Text
6 lines
194 B
Text
|
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"
|