From 20a3e249a9f41588f8b89d144f5ed910a7e8c397 Mon Sep 17 00:00:00 2001 From: Attila Magyar Date: Fri, 25 Jun 2021 15:09:17 +0200 Subject: [PATCH] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index fab02d0..1187878 100644 --- a/README.md +++ b/README.md @@ -202,7 +202,7 @@ Quotations don't act as lexical closures however. The parameter stack is unwinde ### Implementation notes -The quotation code is compiled into the enclosing word and bypassed by a jump. At runtime the quotation pushes its address as well as a stack frame to the stack. The word `yield` calls the address like a normal word and sets the parameter stack pointer to point to the quotation's stack frame. Quotations are [implemented]((src/main/res/raw/quotations.forth)) in fcl. +The quotation code is compiled into the enclosing word and bypassed by a jump. At runtime the quotation pushes its address as well as a stack frame to the stack. The word `yield` calls the address like a normal word and sets the parameter stack pointer to point to the quotation's stack frame. Quotations are [implemented](src/main/res/raw/quotations.forth) in fcl. ## Strings