uc.go 97 B

1234567
  1. package uc
  2. import "strings"
  3. func UpperCase(str string) string {
  4. return strings.ToUpper(str)
  5. }