4 lines
85 B
Text
4 lines
85 B
Text
|
|
var value : String = "1234";
|
||
|
|
value := IntToStr(StrToInt(value) + 1);
|
||
|
|
PrintLn(value);
|