7 lines
125 B
Go
7 lines
125 B
Go
package main
|
|
import "fmt"
|
|
import "strconv"
|
|
func main() {
|
|
i, _ := strconv.Atoi("1234")
|
|
fmt.Println(strconv.Itoa(i + 1))
|
|
}
|