func Max()

in internal/lib/ints.go [4:9]


func Max(x, y int) int {
	if x > y {
		return x
	}
	return y
}