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