From 9efecb311f023b7d98f972678c95c7c98aeb6714 Mon Sep 17 00:00:00 2001 From: Firas Khalil Khana Date: Sat, 1 May 2021 13:21:54 +0300 Subject: [PATCH] Add missing newline character --- 11-if/04-short-if/04-scope-shadowing/01-shadowing/main.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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) }