mirror of
https://github.com/MichaelCade/90DaysOfDevOps.git
synced 2025-08-03 00:31:26 +07:00
Day 11
This commit is contained in:
13
Days/Go/day11_example4.go
Normal file
13
Days/Go/day11_example4.go
Normal file
@ -0,0 +1,13 @@
|
||||
package main
|
||||
|
||||
import "fmt"
|
||||
|
||||
func main() {
|
||||
var challenge = "#90DaysOfDevOps"
|
||||
const daystotal = 90
|
||||
var dayscomplete = 11
|
||||
|
||||
fmt.Printf("Welcome to %v\n", challenge)
|
||||
fmt.Printf("This is a %v challenge and you have completed %v days\n", daystotal, dayscomplete)
|
||||
fmt.Println("Great work")
|
||||
}
|
Reference in New Issue
Block a user