90DaysOfDevOps/docs/2022/Go/day11_example2.go
2023-03-14 11:03:42 -04:00

11 lines
193 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")
}