Updated Println statements

Can someone change the image as well?
This commit is contained in:
Shreyes Srivastava 2022-05-01 15:52:55 +05:30 committed by GitHub
parent 786dc3908e
commit 93e97d5ec3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -62,7 +62,7 @@ func main() {
const daystotal = 90
fmt.Println("Welcome to", challenge)
fmt.Println("This is a", daystotal, "challenge")
fmt.Println("This is a", daystotal, "days challenge")
}
```
You can find the above code snippet in [day11_example2.go](Go/day11_example2.go)
@ -86,7 +86,7 @@ func main() {
var dayscomplete = 11
fmt.Println("Welcome to", challenge, "")
fmt.Println("This is a", daystotal, "challenge and you have completed", dayscomplete, "days")
fmt.Println("This is a", daystotal, " days challenge and you have completed", dayscomplete, "days")
fmt.Println("Great work")
}
```