mirror of
https://github.com/unknwon/the-way-to-go_ZH_CN.git
synced 2025-08-12 07:02:11 +08:00
12 lines
121 B
Go
12 lines
121 B
Go
package main
|
|
|
|
import (
|
|
"./uc/uc"
|
|
"fmt"
|
|
)
|
|
|
|
func main() {
|
|
str1 := "USING package uc"
|
|
fmt.Println(uc.UpperCase(str1))
|
|
}
|