RosettaCodeData/Task/Increment-a-numerical-string/AutoIt/increment-a-numerical-string.autoit
2023-07-01 13:44:08 -04:00

3 lines
44 B
Text

Global $x = "12345"
$x += 1
MsgBox(0,"",$x)