Sign in
◑
Theme
go
/
blog
/
52f6e033d5643a89ff59ffe1cd1fa6f0fa949e99
/
.
/
content
/
constants
/
complex3.go
blob: 95e9e418da964e5d2cdc128ec728d56372645b84 [
file
]
// +build OMIT
package main
import "fmt"
func main() {
const Two = 2.0 + 0i
// START OMIT
var f float64
var g float64 = Two
f = Two
fmt.Println(f, "and", g)
// STOP OMIT
}