mirror of
https://github.com/MichaelCade/90DaysOfDevOps.git
synced 2025-01-09 06:36:39 +07:00
11 lines
189 B
Go
11 lines
189 B
Go
package main
|
|
|
|
import "fmt"
|
|
|
|
func main() {
|
|
var challenge = "#90DaysOfDevOps"
|
|
const daystotal = 90
|
|
|
|
fmt.Println("Welcome to", challenge)
|
|
fmt.Println("This is a", daystotal, "challenge")
|
|
} |