Type conversions

i := 90
f := float64(i)
u := uint(i)
// Will be equal to the character Z
s := string(i)

#How to get int string?

i := 90
// need import "strconv"
s := strconv.Itoa(i)
fmt.Println(s) // Outputs: 90
Comments