Files
llgo/compiler/cl/_testlibgo/math/in.go

12 lines
127 B
Go
Raw Normal View History

2024-06-13 07:30:08 +08:00
package main
import (
"math"
)
func main() {
2024-06-15 10:24:10 +08:00
println(math.Sqrt(2))
2024-06-13 07:30:08 +08:00
println(math.Abs(-1.2))
2024-06-15 10:24:10 +08:00
println(math.Ldexp(1.2, 3))
2024-06-13 07:30:08 +08:00
}