Sign in
◑
Theme
go
/
blog
/
10cc6f575bc85cafbda92aa7030a8e5c6e486dfe
/
.
/
content
/
constants
/
int1.go
blob: 913ad78193250a43ddf69bc113a0af57f34d3602 [
file
]
// +build OMIT
package main
import "fmt"
func main() {
// START OMIT
type MyInt int
const Three = 3
const TypedThree int = 3
var mi MyInt
mi = 3
// OK
mi = Three
// OK
mi = TypedThree
// Bad
fmt.Println(mi)
// STOP OMIT
}