;;;; cl-forth.asd (asdf:defsystem cl-forth :description "FORTH interpreter written in Common Lisp" :author ("Bubblegumdrop ") :license "GPLv3+" :version "0.1.0" :depends-on (:deploy) :components ((:file "package") (:file "utils") (:file "stack") (:file "interpreter") (:file "methods") (:file "cl-forth")) :defsystem-depends-on (:deploy) :build-operation "deploy-op" :build-pathname "cl-forth.run" :entry-point "cl-forth::main")