xmtop/utils/math.go
2020-02-13 10:15:52 -06:00

9 lines
81 B
Go

package utils
func MaxInt(a, b int) int {
if a > b {
return a
}
return b
}