This commit is contained in:
michaelcade
2022-01-11 08:55:38 +00:00
parent 02f9d4c2d4
commit 5e0458f95a
11 changed files with 206 additions and 2 deletions

11
Days/Go/day11_example2.go Normal file
View File

@ -0,0 +1,11 @@
package main
import "fmt"
func main() {
var challenge = "#90DaysOfDevOps"
const daystotal = 90
fmt.Println("Welcome to", challenge)
fmt.Println("This is a", daystotal, "challenge")
}