github.com/GoogleContainerTools/skaffold@v1.39.18/examples/generate-pipeline/main.go (about) 1 package main 2 3 import ( 4 "fmt" 5 "time" 6 ) 7 8 func main() { 9 for { 10 fmt.Println("Hello world!") 11 12 time.Sleep(time.Second * 1) 13 } 14 }