aboutsummaryrefslogtreecommitdiff
path: root/content/constants/complex2.go
blob: 5dd4f73029f4649ca958a6e9a2c6718500457788 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
// +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
}