nForth: Back To Pseudo-Interpretation
I blew it making nForth compile-dominant (pseudo-interpret only text in square braces). It created annoying complications, and I switched back to normally-interpret and compile only things inside curly braces.
This is not traditional Forth, which automatically starts compiling at a `:` and ends the compile at a `;` -- I always hated that convention. The curly braces make code look C-shaped, and that is ok, because { this looks like a function definition ; }
So typing things in at the prompt works as expected, and regular parens can group expressions that are compiled together:
And all is well.
2023-09-22 ยท 3 years ago ยท ๐ mitgedanken