What's the function to create a int value from string
i := ???.????( "10" )
Import the strconv package (src/pkg/strconv), then use strconv.Atoi("10")
strconv
strconv.Atoi("10")