RosettaCodeData/Task/String-length/Forth/string-length-1.fth

4 lines
136 B
Forth
Raw Permalink Normal View History

2013-04-11 01:07:29 -07:00
CREATE s ," Hello world" \ create string "s"
s C@ ( -- length=11 )
s COUNT ( addr len ) \ convert to a stack string, described below