internal/lib/ints.go (
7
lines of code) (
raw
):
package lib // Max returns the larger of x or y. func Max(x, y int) int { if x > y { return x } return y }