What will this code print?
var i int8 = 120 i += 10 fmt.Println(i)
NaN
0
-126
130 Go Playground example, output:
-126 Program exited.