advent-of-code-2023

My solutions to AoC 2023
git clone git://git.entf.net/advent-of-code-2023
Log | Files | Refs

aoc.asd (206B)


      1 (defsystem "aoc"
      2   :class :package-inferred-system
      3   :pathname "src"
      4   :depends-on ("aoc/main")
      5   :in-order-to ((test-op (load-op "aoc-test")))
      6   :perform (test-op (o c) (symbol-call :aoc-test :test-all)))