Files
the-way-to-go_ZH_CN/eBook/examples/chapter_9/ucmain.go

12 lines
121 B
Go

package main
import (
"./uc/uc"
"fmt"
)
func main() {
str1 := "USING package uc"
fmt.Println(uc.UpperCase(str1))
}