gitlab.com/evatix-go/core@v1.3.55/coremath/MaxInt.go (about) 1 package coremath 2 3 //goland:noinspection ALL 4 func MaxInt(int1, int2 int) int { 5 if int1 < int2 { 6 return int2 7 } 8 9 return int1 10 }