Browse Source

Added iterate

Added iterate to the packages used list.  I'm not going to use CL:LOOP.
Samuel W. Flint 9 years ago
parent
commit
ceaf00277c
2 changed files with 4 additions and 2 deletions
  1. 2 1
      cl-ballistics.asd
  2. 2 1
      package.lisp

+ 2 - 1
cl-ballistics.asd

@@ -4,7 +4,8 @@
   :description "Describe cl-ballistics here"
   :author "Samuel W. Flint <swflint@flintfam.org"
   :license "GNU GPL"
-  :depends-on (#:cl-mathstats)
+  :depends-on (#:cl-mathstats
+               #:iterate)
   :serial t
   :components ((:file "package")
                (:file "cl-ballistics")))

+ 2 - 1
package.lisp

@@ -1,5 +1,6 @@
 ;;;; package.lisp
 
 (defpackage #:cl-ballistics
-  (:use #:cl))
+  (:use #:cl
+        #:iterate))