mirror of
https://github.com/unknwon/the-way-to-go_ZH_CN.git
synced 2025-08-12 03:55:28 +08:00
8 lines
97 B
Go
8 lines
97 B
Go
package uc
|
|
|
|
import "strings"
|
|
|
|
func UpperCase(str string) string {
|
|
return strings.ToUpper(str)
|
|
}
|