testlibgo: math => mathbits

This commit is contained in:
xushiwei
2024-06-13 07:30:08 +08:00
parent 31e3fc9060
commit 64e96cc101
3 changed files with 9 additions and 0 deletions

View File

@@ -0,0 +1,9 @@
package main
import (
"math"
)
func main() {
println(math.Abs(-1.2))
}