<pre class="language-markup"><code>func main() { x := 11 fmt.Println(x) { fmt.Println(x) x := 12 fmt.Println(x) } fmt.Println(x) } </code></pre>