Atoi golang code example
Example 1: golang convert string to int
Int, err := strconv.Atoi("12345")
Example 2: golang parse float64
f, err := strconv.ParseFloat("3.1415", 64)
Int, err := strconv.Atoi("12345")
f, err := strconv.ParseFloat("3.1415", 64)