RosettaCodeData/Task/Increment-a-numerical-string/Forth/increment-a-numerical-string-2.fth

4 lines
109 B
Forth
Raw Permalink Normal View History

2013-04-10 21:29:02 -07:00
: inc-string ( addr n -- )
over count number? not abort" invalid number"
rot s>d d+ >string rot place ;