What does this comparison evaluate to, and why? Both interface values hold the same dynamic type and equal underlying data.func main() { a := 100000 b := 100000 var x interface{} = a var y interface{} = b fmt.Println(x == y) }