What will the output be?
a,b := 1, 2 b,c:= 3, 4 fmt.Println(a, b, c)
1 2 3
It will not compile. Go Playground Example
1 2 4
1 3 4