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

4 lines
109 B
Forth
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
: inc-string ( addr n -- )
over count number? not abort" invalid number"
rot s>d d+ >string rot place ;