github.com/graybobo/golang.org-package-offline-cache@v0.0.0-20200626051047-6608995c132f/x/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 }