Your ROOT_URL in app.ini is https://git.ondrovo.com/ but you are visiting http://159.69.29.240:49153/MightyPork/forth/src/commit/9c44e0fb29ba8448a0163c93f75d180a7681b06e/testfiles/saverestore.f You should set ROOT_URL correctly, otherwise the web may not work correctly.
Trying to build a forth runtime in C
 
 
 
forth/testfiles/saverestore.f

19 lines
176 B

\ 1 debug
VARIABLE SI_INC 0 SI_INC !
: SI1
SI_INC @ >IN +!
15 SI_INC !
;
: S$ S" SAVE-INPUT SI1 RESTORE-INPUT 12345" ;
S$ EVALUATE SI_INC @
. . .
\ 0 2345 15
bye