package main import ( "fmt" ) func main() { i := "tes," if i[len(i)-1] == ',' { fmt.Println("hi") } else { fmt.Println("world") } }