func ToLower(s string) string
package main import ( "fmt" "strings" ) func main() { fmt.Println(strings.ToLower("Gopher")) } // Output: // gopher