retroforth/interface/future.retro
crc 8f739442ea add glossary data for missing a: words
FossilOrigin-Name: f6f33a2ffdbb82d670aec795fa880c1059e23fdeb1bc683d95feb11b3ee1639f
2023-03-20 15:19:47 +00:00

19 lines
399 B
Forth

# New Words
This contains a variety of words from my more recent systems
and things that will be standard in the future.
~~~
:d:use-hashes
&eq? &d:lookup #5 - store
[ d:hash fetch ] &d:lookup #8 - store
#2049 &d:lookup store
&s:hash &d:lookup n:inc store ;
:d:use-strings
&s:eq? &d:lookup #5 - store
&d:name &d:lookup #8 - store
#0 &d:lookup store
#0 &d:lookup n:inc store ;
~~~