2023-09-09 22:52:50 +02:00

9 lines
77 B
Go

package main
func Max(x, y int) int {
if x < y {
return y
}
return x
}