Merge pull request #304 from xushiwei/q

testlibgo: math => mathbits
This commit is contained in:
xushiwei
2024-06-13 07:33:46 +08:00
committed by GitHub
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))
}