Wox/wox.core/util/math.go

9 lines
92 B
Go

package util
func MaxInt64(a int64, b int64) int64 {
if a > b {
return a
}
return b
}