The last line of utilities.fth reads:
CR $" Test utilities loaded" TYPE CR
There is no such word $"
Maybe it was intended to read:
CR S" Test utilities loaded" TYPE CR
But use of S" in interpretation mode is not actually in the core word set. See 6.1.2165 in the Forth 2012 document.
To be consistent with the other test files, this line should be changed to:
CR .( Test utilities loaded) CR
The last line of
utilities.fthreads:CR $" Test utilities loaded" TYPE CRThere is no such word
$"Maybe it was intended to read:
CR S" Test utilities loaded" TYPE CRBut use of
S"in interpretation mode is not actually in the core word set. See 6.1.2165 in the Forth 2012 document.To be consistent with the other test files, this line should be changed to:
CR .( Test utilities loaded) CR