When I typed like below
package main
import (
"fmt"
"math"
)
func main() {
fmt.Println(math.MaxInt64*100 > math.MaxInt64+100)
}
and things like math.MaxInt64 + 100 > math.MaxInt64 + 10
and others,
it will output true
properly, but how go compares a overflow Int64?
I know the big
package provides some operations but is it that?