testlibgo: math

This commit is contained in:
xushiwei
2024-06-15 10:24:10 +08:00
parent 12c262621e
commit 94d567bf8f
2 changed files with 54 additions and 0 deletions

11
cl/_testlibgo/math/in.go Normal file
View File

@@ -0,0 +1,11 @@
package main
import (
"math"
)
func main() {
println(math.Sqrt(2))
println(math.Abs(-1.2))
println(math.Ldexp(1.2, 3))
}