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