90DaysOfDevOps/2022/Days/Go/day11_example2.go

11 lines
193 B
Go
Raw Normal View History

2022-01-11 15:55:38 +07:00
package main
import "fmt"
func main() {
var challenge = "#90DaysOfDevOps"
const daystotal = 90
fmt.Println("Welcome to", challenge, "")
2022-01-11 15:55:38 +07:00
fmt.Println("This is a", daystotal, "challenge")
}