Sujet : Re: Juggling system-compilation items
De : ruvim.pinka (at) *nospam* gmail.com (Ruvim)
Groupes : comp.lang.forthDate : 11. Aug 2024, 00:14:09
Autres entêtes
Organisation : A noiseless patient Spider
Message-ID : <v98s82$kldc$1@dont-email.me>
References : 1 2
User-Agent : Mozilla Thunderbird
On 2024-08-10 13:51, mhx wrote:
iForth64 does not have N>R and NR> ( never needed them ).
After pulling them from https://forth-standard.org/standard/tools/ ...
There is a way to implement them in a standard program, I accidentally came across you old post: <
https://groups.google.com/g/comp.lang.forth/c/G6-M-NjRRq0/m/WkFH84TRtKwJ>
FORTH> 42 const aap ok
FORTH> words
aap const
ok
FORTH> see aap
Flags: TOKENIZE, ANSI
: aap 42 ; ok
FORTH> ' aap idis
$013414C0 : aap
$013414CA push #42 b#
$013414CC ;
No problem.
Thank you!
-- Ruvim