Compute Error Function

Examples in Go
package main

import (
	"fmt"
	"math"
)

func main() {
	c := math.Erf(1.0)
	fmt.Printf("%.6f", c)
}