90DaysOfDevOps/2022/tr/Days/Go/day11_example2.go
2023-06-07 14:18:28 +03: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")
}