// vim: shiftwidth=4 tabstop=4 noexpandtab package main import ( "fmt" "time" ) func main() { for { fmt.Println("Hey!") time.Sleep(2 * time.Second) } }