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