DevBits
Home
Atlas
Play
About
Sign up
Log in
All
Go
Math
Compute Min
Compute Min
Post Example
Examples in
Go
Compute Min in Go
by yhuang
Go
fmt
fmt.Println
math
math.Min
package main import ( "fmt" "math" ) func main() { fmt.Println(math.Min(1, 2)) }