diff options
author | Bruno Cichon <ebrasca.ebrasca@gmail.com> | 2015-10-13 15:27:14 +0200 |
---|---|---|
committer | Bruno Cichon <ebrasca.ebrasca@gmail.com> | 2015-10-13 15:27:14 +0200 |
commit | 92dc51449115f3d05a6c8344cae35f011d17fd06 (patch) | |
tree | 1785c097fe2e3e124c30baef3489e5448a8593c0 /src/package.lisp | |
parent | 080cbfd982ef451429224f25e12250941216bb26 (diff) |
l-system is now parametric
Diffstat (limited to 'src/package.lisp')
-rw-r--r-- | src/package.lisp | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/src/package.lisp b/src/package.lisp index 713a42d..3388533 100644 --- a/src/package.lisp +++ b/src/package.lisp @@ -2,7 +2,10 @@ (defpackage #:l-system (:use #:cl #:iter #:sb-cga) - (:export #:l-system + (:export #:*l-system-clauses* + #:l-system + #:map-l-system + #:def-l-system-clause + #:turtle-system - #:list-of-vectors->list - #:iter-l-system)) + #:list-of-vectors->list)) |