github.com/switchupcb/yaegi@v0.10.2/_test/complex4.go (about)

     1  package main
     2  
     3  import "fmt"
     4  
     5  func f(a, b float64) interface{} { return complex(a, b) }
     6  
     7  func main() {
     8  	a := f(3, 2)
     9  	fmt.Println(a.(complex128))
    10  }
    11  
    12  // Output:
    13  // (3+2i)