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