Files

10 lines
96 B
Go
Raw Permalink Normal View History

package main
import (
"math/cmplx"
)
func main() {
println("abs(3+4i):", cmplx.Abs(3+4i))
}