Merge pull request #145 from LMech/fixes

Fix day11
This commit is contained in:
Michael Cade 2022-06-26 12:56:16 +02:00 committed by GitHub
commit 68691acb8b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 3 additions and 3 deletions

View File

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

View File

@ -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")
}
```