package main import "time" func main() { for { println("hello world!") time.Sleep(time.Second) } }