9 lines
77 B
Go
9 lines
77 B
Go
package main
|
|
|
|
func Max(x, y int) int {
|
|
if x < y {
|
|
return y
|
|
}
|
|
return x
|
|
}
|