package main
import (
"fmt"
"time"
)
func main() {
for {
fmt.Println(time.Now().Format("2006-01-02 15:04:05"), "hello world.")
time.Sleep(time.Minute)
}