string to int

Atoi (string to int) and Itoa (int to string).

i, err := strconv.Atoi("-42")
s := strconv.Itoa(-42)

go build x86 on x64

GOARCH=386 GOOS=windows go build