Sign in
go
/
blog
/
5b40331ba5ebddfd391c8387fc0ff32555b42ee6
/
.
/
content
/
constants
/
default3.go
blob: 246ae453aa404bed13accb1e0e4edcb3af35d606 [
file
] [
log
] [
blame
]
// +build OMIT
package main
import "fmt"
type MyString string
const myStringHello MyString = "Hello, 世界"
func main() {
// START OMIT
fmt.Printf("%T: %v\n", myStringHello, myStringHello)
// STOP OMIT
}