diff --git a/Days/Go/day11_example2.go b/Days/Go/day11_example2.go index 47b7d4b..6fd685c 100644 --- a/Days/Go/day11_example2.go +++ b/Days/Go/day11_example2.go @@ -6,6 +6,6 @@ func main() { var challenge = "#90DaysOfDevOps" const daystotal = 90 - fmt.Println("Welcome to", challenge) + fmt.Println("Welcome to", challenge, "") fmt.Println("This is a", daystotal, "challenge") } \ No newline at end of file diff --git a/Days/day11.md b/Days/day11.md index d3ab5b7..1b850cf 100644 --- a/Days/day11.md +++ b/Days/day11.md @@ -39,7 +39,7 @@ import "fmt" func main() { var challenge = "#90DaysOfDevOps" - fmt.Println("Welcome to", challenge "") + fmt.Println("Welcome to", challenge, "") } ``` You can find the above code snippet in [day11_example1.go](Go/day11_example1.go) @@ -61,7 +61,7 @@ func main() { var challenge = "#90DaysOfDevOps" const daystotal = 90 - fmt.Println("Welcome to", challenge) + fmt.Println("Welcome to", challenge, "") fmt.Println("This is a", daystotal, "challenge") } ```