0 votes
by Gan Uesli Starling (120 points)
Unlike other Forths (Swift Forth, gForth, Win32Forth), CR seems to not cause a flush to string. So that when I...

." Please wait while slow code processes." CR

...that string appears on screen AFTER the slow code has finished. Which isn't helpful.

How do I get VFX Forth to flush a string buffer to screen immediately?

1 Answer

0 votes
by Gerald Wodni (1.1k points)
VFX is vectoring the IO through the GENIO system. So without knowing your OS, sourcecode or selected GENIO system, this question is hard to answer.
: slow ." start" 200 ms ." end" ; \ works as expected under lin64 using xterm.
...