12 lines
127 B
Go
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))
|
|
}
|