Compute Gamma Function
Examples in
Go
package main
import (
"fmt"
"math"
)
func main() {
c := math.Gamma(10.0)
fmt.Printf("%.1f", c)
}