From: Ralph Ronnquist Date: Fri, 4 Jun 2021 08:29:57 +0000 (+1000) Subject: adding the AGAIN control word X-Git-Url: https://git.rrq.au/?a=commitdiff_plain;h=ea06ac29b3258dd6b91801a5175066e81275667d;p=rrq%2Frrqforth.git adding the AGAIN control word --- diff --git a/reference.html b/reference.html index 0fc06e1..609c422 100644 --- a/reference.html +++ b/reference.html @@ -793,6 +793,7 @@ asciidoc.install(); 2OVER   2SWAP  

ABS   +AGAIN   ALLOT   AND   [ASM]  

@@ -1191,6 +1192,23 @@ value. To that end, the values are 64-bit signed integers.

_______________________________________________________
+

+ +
+

Word: AGAIN

+
+
+
Data stack: Compiling: ( -- a )
+
+

"AGAIN" is an immediate function word that is used together with +BEGIN and instead of END to implement structured +execution control. AGAIN scans the datastack for the nearest preceding +BEGIN marker and lays out an unconditional branch from this point the +beginning of the block during execution. It thereafter performs the +END compile action to end the block.

+
+_______________________________________________________ +

@@ -3411,7 +3429,7 @@ is deepest.