mirror of
https://github.com/unknwon/the-way-to-go_ZH_CN.git
synced 2025-08-20 02:03:38 +08:00
9 lines
114 B
Go
9 lines
114 B
Go
// uc.go
|
|
package uc
|
|
|
|
import "strings"
|
|
|
|
func UpperCase(str string) string {
|
|
return strings.ToUpper(str)
|
|
}
|