Files
AynaLivePlayer/util/integer.go

9 lines
80 B
Go

package util
func IntMin(x, y int) int {
if x < y {
return x
}
return y
}