package main import ( "fmt" "strconv" "strings" ) func main() { fmt.Println(strconv.Itoa(-123)) fmt.Println(strings.Split("abc,def,123", ",")) }