VolksForth/sources/generic/strings.fth

12 lines
176 B
Forth
Raw Normal View History

2020-07-15 06:46:48 +00:00
\ String Ext.
CR .( loading String extensions )
: S" ASCII " PARSE
HERE 2DUP ! 1+
OVER 1+ ALLOT
2DUP 4 ROLL SWAP ROT
1+ MOVE SWAP ;
CR .( String extensions loaded )