goop/internal/utils/numbers.go

9 lines
81 B
Go
Raw Normal View History

2020-10-30 17:42:48 +00:00
package utils
func MaxInt(x, y int) int {
if x > y {
return x
}
return y
}