This commit is contained in:
michaelcade
2022-01-12 08:00:24 +00:00
parent 5e0458f95a
commit aa09738cac
11 changed files with 156 additions and 14 deletions

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

@ -0,0 +1,11 @@
package main
import "fmt"
func main() {
var challenge = "#90DaysOfDevOps"
fmt.Println(challenge)
fmt.Println(&challenge)
}