başlangıç, push pop + - . vb.

This commit is contained in:
2024-07-18 13:50:14 +03:00
commit a0fb419b1b
8 changed files with 327 additions and 0 deletions

14
cl-forth.asd Normal file
View File

@@ -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")