Merge pull request #1142 from mflaxman/patch-1

bugfix
This commit is contained in:
astaxie
2021-01-15 23:12:26 +08:00
committed by GitHub

View File

@@ -148,10 +148,7 @@ func main() {
if err != nil {
fmt.Println(err)
}
e, err := strconv.Itoa("1023")
if err != nil {
fmt.Println(err)
}
e := strconv.Itoa(1023)
fmt.Println(a, b, c, d, e)
}
```