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