summaryrefslogtreecommitdiff
path: root/l-system.asd
blob: 4d07bb845ff4d3057f0f549ea23f0800be80ef98 (plain)
1
2
3
4
5
6
7
8
9
10
11
;;;; l-system.asd

(asdf:defsystem #:l-system
  :description "L-system or Lindenmayer system on lists"
  :author "Bruno Cichon <ebrasca.ebrasca@openmailbox.org>"
  :license "GPLv3+"
  :pathname "src"
  :serial t
  :depends-on (:iterate)
  :components ((:file "package")
               (:file "l-system")))