mirror of
https://github.com/forth-ev/VolksForth.git
synced 2024-11-29 21:49:17 +00:00
533e73c29d
- add first test for including an .fth file - add generic rules to convert lowercase .fb files to .fth files - check in the tools/echo-toupper/tolower.py files that I left out earlier
10 lines
136 B
Forth
10 lines
136 B
Forth
|
|
include log2file.fb
|
|
logopen incltest.log
|
|
|
|
.( hello, world) cr
|
|
: test-hello ." hello, world, from test-hello" cr ;
|
|
test-hello
|
|
|
|
logclose
|