3 lines
109 B
Forth
3 lines
109 B
Forth
: inc-string ( addr n -- )
|
|
over count number? not abort" invalid number"
|
|
rot s>d d+ >string rot place ;
|