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)) }