This commit is contained in:
michaelcade
2022-01-11 08:55:38 +00:00
parent 02f9d4c2d4
commit 5e0458f95a
11 changed files with 206 additions and 2 deletions

13
Days/Go/day11_example4.go Normal file
View File

@ -0,0 +1,13 @@
package main
import "fmt"
func main() {
var challenge = "#90DaysOfDevOps"
const daystotal = 90
var dayscomplete = 11
fmt.Printf("Welcome to %v\n", challenge)
fmt.Printf("This is a %v challenge and you have completed %v days\n", daystotal, dayscomplete)
fmt.Println("Great work")
}