RosettaCodeData/Task/Increment-a-numerical-string/FTCBASIC/increment-a-numerical-string.basic

10 lines
105 B
Text
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
define value = 0, text$ = "12345"
strint value,text$
+1 value
intstr text$,value
print text$
pause
end