mirror of
https://github.com/MichaelCade/90DaysOfDevOps.git
synced 2025-01-08 14:23:01 +07:00
13 lines
289 B
Go
13 lines
289 B
Go
|
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")
|
||
|
}
|