Newer
Older
mazes / mazes.asd
;;;; mazes.asd

(asdf:defsystem #:mazes
  :description "Describe mazes here"
  :author "Your Name <your.name@example.com>"
  :license  "Specify license here"
  :version "0.0.1"
  :serial t
  :components ((:file "package")
               (:file "mazes")
               (:file "grid")
               (:file "binary-tree")
               (:file "side-winder")
               (:file "distances")))