90DaysOfDevOps/2022/tr/Days/Go/day12_example4.go

12 lines
130 B
Go
Raw Normal View History

2023-06-07 18:18:28 +07:00
package main
import "fmt"
func main() {
var challenge = "#90DaysOfDevOps"
fmt.Println(challenge)
fmt.Println(&challenge)
}