-- Leo's gemini proxy

-- Connecting to bbs.geminispace.org:1965...

-- Connected

-- Sending request

-- Meta line: 20 text/gemini; charset=utf-8

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 [mod]

2023-09-22 ยท 8 months ago

-- Response ended

-- Page fetched on Sun May 19 16:40:40 2024