mirror of
https://github.com/traefik/yaegi.git
synced 2026-06-01 18:37:56 +00:00
13 lines
131 B
Go
13 lines
131 B
Go
package main
|
|
|
|
import "fmt"
|
|
|
|
func main() {
|
|
var c complex128
|
|
c = 1
|
|
fmt.Printf("%T %v\n", c, c)
|
|
}
|
|
|
|
// Output:
|
|
// complex128 (1+0i)
|