Golang converte int para string
str := strconv.Itoa(12)
Splendid-est Swan
str := strconv.Itoa(12)
s := strconv.Itoa(i)
// also
s := strconv.FormatInt(i, 10)
// and also
s := fmt.Sprintf("%d", i)