RosettaCodeData/Task/Increment-a-numerical-string/AutoIt/increment-a-numerical-string.autoit

4 lines
44 B
Text
Raw Permalink Normal View History

2013-04-10 21:29:02 -07:00
Global $x = "12345"
$x += 1
MsgBox(0,"",$x)