golang.org/toolchain@v0.0.1-go1.9rc2.windows-amd64/blog/content/constants/default3.go (about) 1 // +build OMIT 2 3 package main 4 5 import "fmt" 6 7 type MyString string 8 9 const myStringHello MyString = "Hello, 世界" 10 11 func main() { 12 // START OMIT 13 fmt.Printf("%T: %v\n", myStringHello, myStringHello) 14 // STOP OMIT 15 }