Compute Min

Examples in Go
package main

import (
  "fmt"
  "math"
)

func main() {
  fmt.Println(math.Min(1, 2))
}