Files

8 lines
97 B
Go

package uc
import "strings"
func UpperCase(str string) string {
return strings.ToUpper(str)
}