package main
import (
"fmt"
"time"
)
func main() {
for {
fmt.Println("Hello from Go Inside Docker!")
time.Sleep(5 * time.Second)
}