4 lines
136 B
Forth
4 lines
136 B
Forth
|
|
CREATE s ," Hello world" \ create string "s"
|
||
|
|
s C@ ( -- length=11 )
|
||
|
|
s COUNT ( addr len ) \ convert to a stack string, described below
|