TestFromTestlibgo

This commit is contained in:
xushiwei
2024-06-20 10:07:10 +08:00
parent de6535b722
commit 94f61b0a0c
3 changed files with 68 additions and 0 deletions

View File

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