Gforth Manual

(1)

More precisely, they have no interpretation semantics (see section Interpretation and Compilation Semantics)

(2)

In compiler construction terminology, all places dominated by the definition of the local.

(3)

In standard terminology, "appends to the current definition".

(4)

In standard terminology: The default interpretation semantics are its execution semantics; the default compilation semantics are to append its execution semantics to the execution semantics of the current definition.

(5)

In my opinion, though, you should think thrice before using a doubly-linked list (whatever implementation).

(6)

Unfortunately, long longs are not implemented properly on all machines (e.g., on alpha-osf1, long longs are only 64 bits, the same size as longs (and pointers), but they should be twice as long according to section `Double-Word Integers' in GNU C Manual). So, we had to implement doubles in C after all. Still, on most machines we can use long longs and achieve better performance than with the emulation package.

(7)

We use a one-stack notation, even though we have separate data and floating-point stacks; The separate notation can be generated easily from the unified notation.