Browse Source

Started the CL-Ballistics library

Samuel W. Flint 9 years ago
commit
28160dd7dd
4 changed files with 23 additions and 0 deletions
  1. 1 0
      README.txt
  2. 11 0
      cl-ballistics.asd
  3. 6 0
      cl-ballistics.lisp
  4. 5 0
      package.lisp

+ 1 - 0
README.txt

@@ -0,0 +1 @@
+This is the stub README.txt for the "cl-ballistics" project.

+ 11 - 0
cl-ballistics.asd

@@ -0,0 +1,11 @@
+;;;; cl-ballistics.asd
+
+(asdf:defsystem #:cl-ballistics
+  :description "Describe cl-ballistics here"
+  :author "Samuel W. Flint <swflint@flintfam.org"
+  :license "GNU GPL"
+  :depends-on (#:cl-mathstats)
+  :serial t
+  :components ((:file "package")
+               (:file "cl-ballistics")))
+

+ 6 - 0
cl-ballistics.lisp

@@ -0,0 +1,6 @@
+;;;; cl-ballistics.lisp
+
+(in-package #:cl-ballistics)
+
+;;; "cl-ballistics" goes here. Hacks and glory await!
+

+ 5 - 0
package.lisp

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