Int, err := strconv.Atoi("12345")
s := "97" n, err := strconv.ParseInt(s, 10, 64) if err == nil { fmt.Printf("%d of type %T", n, n) }