package main import ( "fmt" "strconv" ) func main() { test := "30" var i int i, _ = strconv.Atoi(test) fmt.Println(i) }