1
0
Fork 0
mirror of https://github.com/diamondburned/arikawa.git synced 2024-09-19 16:40:29 +00:00
arikawa/internal/intmath/math.go

11 lines
135 B
Go

package intmath
// Min returns the smaller of the two passed numbers.
func Min(a, b int) int {
if a < b {
return a
}
return b
}