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

11 lines
189 B
Go
Raw Normal View History

2022-04-21 21:17:43 +07:00
package main
import "fmt"
func main() {
var challenge = "#90DaysOfDevOps"
const daystotal = 90
fmt.Println("Welcome to", challenge)
fmt.Println("This is a", daystotal, "challenge")
}