简单类型 / 数字 / 数学运算

var number = float64(8)
var power = float64(3)
var result = math.Pow(number, power)
//result is 512
fmt.Println("result =", result)