goop/internal/utils/numbers.go

9 lines
81 B
Go

package utils
func MaxInt(x, y int) int {
if x > y {
return x
}
return y
}