cacl.asd @ c15cbbfc3d37

Add bits/hex/code-char/char-code and characters
author Steve Losh <steve@stevelosh.com>
date Tue, 06 Oct 2020 19:21:14 -0400
parents c5a16c723abb
children (none)
(asdf:defsystem :cacl
  :description "RPN calculator in Common Lisp"
  :author "Steve Losh <steve@stevelosh.com>"

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

  :depends-on (:adopt
               :alexandria
               :losh
               :iterate
               :str
               :uiop)

  :serial t
  :components (
               (:module "src" :serial t
                :components ((:file "package")
                             (:file "base")
                             (:file "math")))))