11 lines
132 B
Go
11 lines
132 B
Go
|
|
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))
|
||
|
|
}
|