Files
llgo/cl/_testrt/complex/in.go

11 lines
132 B
Go
Raw Normal View History

2024-06-20 15:52:56 +08:00
package main
type T complex64
func main() {
c := 1 + 2i
d := T(c)
println(c, real(c), imag(c))
println(d, real(d), imag(d))
}