RosettaCodeData/Task/Increment-a-numerical-string/Elena/increment-a-numerical-string.elena

10 lines
126 B
Text
Raw Permalink Normal View History

2019-09-12 10:33:56 -07:00
import extensions;
2018-06-22 20:57:24 +00:00
2019-09-12 10:33:56 -07:00
public program()
{
var s := "12345";
s := (s.toInt() + 1).toString();
2018-06-22 20:57:24 +00:00
2019-09-12 10:33:56 -07:00
console.printLine(s)
}