This website works better with JavaScript
Startsida
Utforska
Hjälp
Logga in
nice-repo-share
/
the-way-to-go_ZH_CN
spegling av
https://github.com/Unknwon/the-way-to-go_ZH_CN.git
Bevaka
2
Stjärnmärk
0
Fork
0
Filer
Ärenden
0
Wiki
Träd:
17dc1808bd
Grenar
Taggar
master
the-way-to-go_Z...
/
eBook
/
examples
/
chapter_9
/
uc.go
uc.go
97 B
Historik
Rå
1
2
3
4
5
6
7
package uc
import "strings"
func UpperCase(str string) string {
return strings.ToUpper(str)
}