Sign in
◑
Theme
go
/
blog
/
52f6e033d5643a89ff59ffe1cd1fa6f0fa949e99
/
.
/
content
/
constants
/
default3.go
blob: 246ae453aa404bed13accb1e0e4edcb3af35d606 [
file
]
// +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
}