Sujet : Re: Parsing timestamps?
De : no.email (at) *nospam* nospam.invalid (Paul Rubin)
Groupes : comp.lang.forthDate : 29. Jun 2025, 23:26:32
Autres entêtes
Organisation : A noiseless patient Spider
Message-ID : <87o6u6yyjr.fsf@nightsong.com>
References : 1 2 3 4 5 6 7 8 9 10 11 12 13
User-Agent : Gnus/5.13 (Gnus v5.13) Emacs/27.1 (gnu/linux)
dxf <
dxforth@gmail.com> writes:
But aren't 'locals' actually PICK/ROLL in disguise?
Do PICK/ROLL skim all the values off the stack and stuff them in
variables to be later popped on and off the stack like a yo-yo?
Locals can be (and I thought usually are) implemented with the
equivalent of PICK and POST, on either the R stack or a separate L
stack. ROLL is different, "n ROLL" actually shuffles n items around and
in most situations seems kind of nuts.