Files
the-way-to-go_ZH_CN/eBook/examples/chapter_9/uppercase/uc/uc.go
2015-03-03 12:25:25 -05:00

9 lines
114 B
Go

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