Sign in
go
/
website
/
9bc7ea507e11e3e7b5cc7b8c6ce2706f83af39c3
/
.
/
_content
/
blog
/
constants
/
complex2.go
blob: 5dd4f73029f4649ca958a6e9a2c6718500457788 [
file
] [
log
] [
blame
]
// +build OMIT
package main
import "fmt"
func main() {
const Two = 2.0 + 0i
// START OMIT
s := Two
fmt.Printf("%T: %v\n", s, s)
// STOP OMIT
}