Created
December 15, 2016 06:51
-
-
Save krisnova/96b25537b2207ddfc42ca9d945418116 to your computer and use it in GitHub Desktop.
Scope with {}
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package main | |
import "fmt" | |
func main() { | |
n := "Hello Good!" | |
{ | |
n := "Hello Bad!" | |
//fmt.Println(n) | |
} | |
fmt.Println(n) | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment