Sujet : Re: Juggling system-compilation items
De : mhx (at) *nospam* iae.nl (mhx)
Groupes : comp.lang.forthDate : 10. Aug 2024, 10:51:51
Autres entêtes
Organisation : novaBBS
Message-ID : <d94e4a1cb4afa3610abb3ea394dbb5f7@www.novabbs.com>
References : 1
User-Agent : Rocksolid Light
iForth64 does not have N>R and NR> ( never needed them ).
After pulling them from
https://forth-standard.org/standard/tools/ ...
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.
-marcel