[Style] Change markdown source file to Unix-like style and add sample code

This commit is contained in:
dbarobin
2015-08-07 11:58:32 +08:00
parent 7bbccae514
commit 151202e067
5 changed files with 112 additions and 16 deletions

View File

@@ -0,0 +1,7 @@
package uc
import "strings"
func UpperCase(str string) string {
return strings.ToUpper(str)
}