From a0fb419b1be8ed53f580c509b7a55cde8e06d4c9 Mon Sep 17 00:00:00 2001 From: mRnea Date: Thu, 18 Jul 2024 13:50:14 +0300 Subject: =?UTF-8?q?ba=C5=9Flang=C4=B1=C3=A7,=20push=20pop=20+=20-=20.=20vb?= =?UTF-8?q?.?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- cl-forth.asd | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 cl-forth.asd (limited to 'cl-forth.asd') diff --git a/cl-forth.asd b/cl-forth.asd new file mode 100644 index 0000000..7c6f9ea --- /dev/null +++ b/cl-forth.asd @@ -0,0 +1,14 @@ +(asdf:defsystem "cl-forth" + :description "Stack based language implemented in Common Lisp" + :version "0.1" + :author "Emre Akan" + :licence "MIT" + :depends-on ("iterate") + :components ((:file "package") + (:file "util") + (:file "assembly") + (:file "cl-forth") + (:file "main")) + :build-operation "program-op" + :build-pathname "test/cl-forth" + :entry-point "cl-forth:main") -- cgit v1.2.3