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