mirror of https://github.com/nyancrimew/goop.git
9 lines
81 B
Go
9 lines
81 B
Go
|
package utils
|
||
|
|
||
|
func MaxInt(x, y int) int {
|
||
|
if x > y {
|
||
|
return x
|
||
|
}
|
||
|
return y
|
||
|
}
|