Sign in
go
/
blog
/
7ed0a50146b4d79f8b1027b56aa37a966162f30e
/
.
/
content
/
constants
/
default2.go
blob: 2183cf030567f4cdc08d770a6aa430ae1993fa3c [
file
] [
log
] [
blame
]
// +build OMIT
package main
import "fmt"
const hello = "Hello, 世界"
func main() {
// START OMIT
fmt.Printf("%T: %v\n", "Hello, 世界", "Hello, 世界")
fmt.Printf("%T: %v\n", hello, hello)
// STOP OMIT
}