2024-09-24 00:18:07 user51: I think Thinking Forth is a great book, and I think the ideas it conveys are applicable to programming in general, not just Forth (though they fit there particularly well). 2024-09-24 02:00:07 it seems i have accidentally created infix notation 2024-09-24 02:01:20 it happens to all of us sometimes 2024-09-24 02:01:49 building deferred evaluation trees for my relocations, the usage ends up being something like : deferred+ ( a1 n -- a2) \ + rot binary ; 2024-09-24 02:02:13 oops, ' instead of \ 2024-09-24 02:02:34 or when i'm testing with literals... 123 deferred ' + 456 deferred binary