How to calculate the sum of int32 and int8 in Go?
func main() { var u32 uint32 u32 = 434 var i int8 i = -1 fmt.Println(u32 + i)