From d38a67cf078e0eee1f659d09c698307d8141b22c Mon Sep 17 00:00:00 2001 From: rajikaimal Date: Sat, 28 Dec 2019 13:31:36 +0530 Subject: [PATCH] Fix formatting --- Chapter01/variables_and_constants/main.go | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/Chapter01/variables_and_constants/main.go b/Chapter01/variables_and_constants/main.go index ec4c989..d97a5aa 100644 --- a/Chapter01/variables_and_constants/main.go +++ b/Chapter01/variables_and_constants/main.go @@ -13,6 +13,5 @@ func main() { inferred := "Hello World!" fmt.Println("Variable 'explicit' is of type:", reflect.TypeOf(explicit)) - fmt.Println("Variable 'inferred' is of type:", reflect.TypeOf(inferred)) - + fmt.Println("Variable 'inferred' is of type:", reflect.TypeOf(inferred)) }