cacl.asd @ a26bbbf15587 default tip

Fix negative pf
author Steve Losh <steve@stevelosh.com>
date Wed, 05 Mar 2025 15:14:45 -0500
parents dee136fa9a81
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")
                             (:file "units")))))