Compute Cube Root

Examples in Go
package main

import (
    "fmt"
    "math"
)

func main() {
  fmt.Println(math.Cbrt(27))
}