Login
Roast topics
Find topics
Find it!
From:
Stack Overflow
(Uncensored)
subscribe
gforth - How can I access a shadowed definition in Forth? - Stack Overflow
https://stackoverflow.com/questions/69312047/how-can-i-access-a-shadowed-definition-in-forth
links
backlinks
Roast topics
Find topics
Roast it!
When a word is redefined, is it possible to access the old word? Imagine there is a word foo defined and redefined : foo ( n -- 2*n ) 2* ; ok : foo ( n -- 2*n+1 ) foo 1+ ; redefined foo ok 10 fo...