Quantcast
Channel: Golang mixed assignment and declaration - Stack Overflow
Viewing all articles
Browse latest Browse all 5

Answer by jnmoal for Golang mixed assignment and declaration

$
0
0

According to thegolang the documentation:

An identifier declared in a block may be redeclared in an inner block.

That's exactly what your example is showing, a is redeclared within the brackets, because of the ':=', and is never used.

A solution is to declare both variable and then use it:

var a, b int{    b, a = 2, 3    fmt.Println(b)}fmt.Println(a)

Viewing all articles
Browse latest Browse all 5

Trending Articles



<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>