Files

12 lines
127 B
Go
Raw Permalink Normal View History

2024-06-15 15:58:22 +08:00
package main
import (
"math"
)
func main() {
println(math.Sqrt(2))
println(math.Abs(-1.2))
println(math.Ldexp(1.2, 3))
}