summaryrefslogtreecommitdiff
path: root/l-system.asd
blob: ac0ecfc49c74327447fa43c785a75099dd64ca8b (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@gmail.com>"
  :license "GPLv3+"
  :pathname "src"
  :serial t
  :depends-on (:iterate)
  :components ((:file "package")
               (:file "l-system")))