(asdf:defsystem "cl-forth" :description "Stack based language implemented in Common Lisp" :version "0.1" :author "Emre Akan" :licence "MIT" :depends-on ("iterate" "cl-fad") :serial t :components ((:file "package") (:file "util") (:file "assembly") (:file "cl-forth") (:file "simulation") (:file "main") (:file "test/tests")) :build-operation "program-op" :build-pathname "test/cl-forth" :entry-point "cl-forth:main")