func main()

in 6-appsource/hello-world/main.go [22:28]


func main() {
	for {
		fmt.Println("Hello world!")

		time.Sleep(time.Second * 1)
	}
}