ToLower returns s with all Unicode letters mapped to their lower case.
package main import ( "fmt" "strings" ) func main() { fmt.Println(strings.ToLower("Gopher")) }