sand.asd @ 50ab2f9c5b2f

Initial commit
author Steve Losh <steve@stevelosh.com>
date Wed, 06 Jul 2016 18:29:38 +0000
parents (none)
children 277982735a9d
(asdf:defsystem #:sand
  :name "sand"
  :description "A little sandbox to play around in."

  :author "Steve Losh <steve@stevelosh.com>"

  :license "MIT/X11"
  :version "0.0.1"

  :depends-on (#:defstar
               #:iterate
               #:cl-arrows)

  :serial t
  :components
  ((:file "quickutils") ; quickutils package ordering crap
   (:file "package")
   (:module "src"
    :serial t
    :components ((:file "utils")
                 (:file "random-numbers")
                 ))))