func EqualFold(s, t string) bool
package main import ( "fmt" "strings" ) func main() { fmt.Println(strings.EqualFold("Go", "go")) //true }