github.com/traefik/yaegi@v0.15.1/_test/real0.go (about) 1 package main 2 3 import "fmt" 4 5 func f(c complex128) interface{} { return real(c) } 6 7 func main() { 8 c := complex(3, 2) 9 a := f(c) 10 fmt.Println(a.(float64)) 11 } 12 13 // Output: 14 // 3