github.com/traefik/yaegi@v0.15.1/_test/complex1.go (about) 1 package main 2 3 import "fmt" 4 5 func main() { 6 var c complex128 7 c = 1 8 fmt.Printf("%T %v\n", c, c) 9 } 10 11 // Output: 12 // complex128 (1+0i)