gotlin/imports.go

10 lines
107 B
Go

package main
import (
"fmt"
"strings"
)
func demoImports() {
fmt.Println(strings.ToUpper("gotlin"))
}