aboutsummaryrefslogtreecommitdiff
path: root/content/constants/default3.go
blob: 246ae453aa404bed13accb1e0e4edcb3af35d606 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// +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
}