github.com/gnolang/gno@v0.0.0-20240520182011-228e9d0192ce/gnovm/tests/backup/complex4.gno (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)