diff --git a/11-if/04-short-if/04-scope-shadowing/01-shadowing/main.go b/11-if/04-short-if/04-scope-shadowing/01-shadowing/main.go index 3380e83..3ced9cd 100644 --- a/11-if/04-short-if/04-scope-shadowing/01-shadowing/main.go +++ b/11-if/04-short-if/04-scope-shadowing/01-shadowing/main.go @@ -34,5 +34,5 @@ func main() { // not to the if statement above // UNCOMMENT ALSO LINES BELOW TO SEE IT IN ACTION: - // fmt.Printf("n is %d. 👻 👻 👻 - you've been shadowed ;-)", n) + // fmt.Printf("n is %d. 👻 👻 👻 - you've been shadowed ;-)\n", n) }