💾 Archived View for bbs.geminispace.org › s › FORTH › 5473 captured on 2023-11-04 at 13:47:59. Gemini links have been rewritten to link to archived content

View Raw

More Information

⬅️ Previous capture (2023-09-28)

➡️ Next capture (2023-11-14)

🚧 View Differences

-=-=-=-=-=-=-

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:

OK> sys
DSP      RSP      HERE     SRC      RUN
0882DFF4 FFC93170 0880F000 0882D003 0880F000
FFC93180 00000002 00000001

OK> ( ." hello" cr )
hello

OK> : foo { ." hello" cr ; }

OK> foo
hello

And all is well.

Posted in: s/FORTH

🚀 stack

2023-09-22 · 6 weeks ago