Sign in
android
/
platform
/
prebuilts
/
go
/
windows-x86
/
refs/heads/studio-1.4-dev
/
.
/
blog
/
content
/
constants
/
complex3.go
blob: 95e9e418da964e5d2cdc128ec728d56372645b84 [
file
] [
log
] [
blame
] [
edit
]
// +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
}