blob: 902850fafe759f3a62eb2339fcc9a2b2a43c1e38 [file] [log] [blame]
package main
import (
"fmt"
"golang.org/x/text/language"
)
func main() {
tag, _ := language.Parse("hello")
fmt.Println(tag)
}