9 lines
85 B
Go
9 lines
85 B
Go
package apkg
|
|
|
|
func Max(a, b float64) float64 {
|
|
if a > b {
|
|
return a
|
|
}
|
|
return b
|
|
}
|