Files
llgo/_demo/math/math.go
2024-06-15 15:58:22 +08:00

12 lines
127 B
Go

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