blob: 2183cf030567f4cdc08d770a6aa430ae1993fa3c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
// +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
}
|