package main import ( "fmt" "strings" ) func main() { fmt.Println("Contains: ", strings.Contains("test", "es")) }