90DaysOfDevOps/Days/Go/day12_example4.go

12 lines
141 B
Go
Raw Normal View History

2022-01-12 15:00:24 +07:00
package main
import "fmt"
func main() {
var challenge = "#90DaysOfDevOps"
fmt.Println(challenge)
fmt.Println(&challenge)
}